From 5edb201282b79aba611c763d11a84dcde15fcae6 Mon Sep 17 00:00:00 2001 From: may <63159454+m4rch3n1ng@users.noreply.github.com> Date: Thu, 6 Mar 2025 01:20:15 +0100 Subject: [PATCH] fix where clauses in type aliases and allow empty where clauses (#259) * parse where clauses in type identifiers before the = * allow empty where clauses * chore: tree-sitter generate --- grammar.js | 7 +- src/grammar.json | 79 +- src/node-types.json | 2 +- src/parser.c | 213032 ++++++++++++++++---------------- test/corpus/declarations.txt | 30 + 5 files changed, 107670 insertions(+), 105480 deletions(-) diff --git a/grammar.js b/grammar.js index 0c001ac..d92e797 100644 --- a/grammar.js +++ b/grammar.js @@ -425,6 +425,7 @@ module.exports = grammar({ 'type', field('name', $._type_identifier), field('type_parameters', optional($.type_parameters)), + optional($.where_clause), '=', field('type', $._type), optional($.where_clause), @@ -465,8 +466,10 @@ module.exports = grammar({ where_clause: $ => prec.right(seq( 'where', - sepBy1(',', $.where_predicate), - optional(','), + optional(seq( + sepBy1(',', $.where_predicate), + optional(','), + )), )), where_predicate: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 5f43274..e3b5347 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2239,6 +2239,18 @@ ] } }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "where_clause" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "=" @@ -2541,37 +2553,50 @@ "type": "STRING", "value": "where" }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "where_predicate" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "where_predicate" - } - ] - } - } - ] - }, { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "where_predicate" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "where_predicate" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index dc91ca8..b4492a1 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4901,7 +4901,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "where_predicate", diff --git a/src/parser.c b/src/parser.c index 60c7356..bd10ed1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3702 -#define LARGE_STATE_COUNT 1018 +#define STATE_COUNT 3746 +#define LARGE_STATE_COUNT 1034 #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 289 +#define PRODUCTION_ID_COUNT 293 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -2759,105 +2759,109 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [185] = {.index = 265, .length = 2}, [186] = {.index = 206, .length = 2}, [187] = {.index = 267, .length = 4}, - [188] = {.index = 271, .length = 3}, - [189] = {.index = 274, .length = 3}, - [190] = {.index = 277, .length = 3}, - [191] = {.index = 280, .length = 3}, - [192] = {.index = 283, .length = 4}, - [193] = {.index = 287, .length = 2}, + [188] = {.index = 271, .length = 2}, + [189] = {.index = 273, .length = 3}, + [190] = {.index = 276, .length = 3}, + [191] = {.index = 279, .length = 3}, + [192] = {.index = 282, .length = 3}, + [193] = {.index = 285, .length = 4}, [194] = {.index = 289, .length = 2}, - [195] = {.index = 289, .length = 2}, - [196] = {.index = 291, .length = 3}, - [197] = {.index = 294, .length = 4}, - [198] = {.index = 298, .length = 3}, - [199] = {.index = 258, .length = 2}, - [200] = {.index = 301, .length = 2}, - [201] = {.index = 303, .length = 3}, - [202] = {.index = 306, .length = 3}, - [203] = {.index = 309, .length = 2}, - [204] = {.index = 311, .length = 3}, - [205] = {.index = 206, .length = 2}, - [206] = {.index = 314, .length = 3}, - [207] = {.index = 317, .length = 2}, - [209] = {.index = 319, .length = 2}, - [210] = {.index = 321, .length = 3}, - [211] = {.index = 324, .length = 3}, - [212] = {.index = 327, .length = 2}, - [213] = {.index = 329, .length = 4}, - [214] = {.index = 333, .length = 5}, - [215] = {.index = 338, .length = 4}, - [216] = {.index = 342, .length = 3}, - [217] = {.index = 342, .length = 3}, - [218] = {.index = 345, .length = 3}, - [219] = {.index = 348, .length = 4}, - [220] = {.index = 345, .length = 3}, - [221] = {.index = 348, .length = 4}, - [222] = {.index = 352, .length = 4}, - [223] = {.index = 352, .length = 4}, - [224] = {.index = 356, .length = 3}, - [225] = {.index = 359, .length = 3}, - [226] = {.index = 362, .length = 3}, - [227] = {.index = 365, .length = 2}, + [195] = {.index = 291, .length = 2}, + [196] = {.index = 291, .length = 2}, + [197] = {.index = 293, .length = 3}, + [198] = {.index = 296, .length = 4}, + [199] = {.index = 300, .length = 3}, + [200] = {.index = 258, .length = 2}, + [201] = {.index = 303, .length = 2}, + [202] = {.index = 305, .length = 3}, + [203] = {.index = 308, .length = 3}, + [204] = {.index = 311, .length = 2}, + [205] = {.index = 313, .length = 3}, + [206] = {.index = 206, .length = 2}, + [207] = {.index = 316, .length = 3}, + [208] = {.index = 319, .length = 2}, + [210] = {.index = 321, .length = 2}, + [211] = {.index = 323, .length = 3}, + [212] = {.index = 326, .length = 3}, + [213] = {.index = 329, .length = 2}, + [214] = {.index = 331, .length = 4}, + [215] = {.index = 335, .length = 5}, + [216] = {.index = 340, .length = 4}, + [217] = {.index = 344, .length = 3}, + [218] = {.index = 344, .length = 3}, + [219] = {.index = 347, .length = 3}, + [220] = {.index = 350, .length = 4}, + [221] = {.index = 347, .length = 3}, + [222] = {.index = 350, .length = 4}, + [223] = {.index = 354, .length = 4}, + [224] = {.index = 354, .length = 4}, + [225] = {.index = 358, .length = 3}, + [226] = {.index = 361, .length = 3}, + [227] = {.index = 364, .length = 3}, [228] = {.index = 367, .length = 2}, - [229] = {.index = 129, .length = 2}, - [230] = {.index = 369, .length = 2}, + [229] = {.index = 369, .length = 2}, + [230] = {.index = 129, .length = 2}, [231] = {.index = 371, .length = 3}, - [232] = {.index = 369, .length = 2}, - [233] = {.index = 371, .length = 3}, - [234] = {.index = 374, .length = 3}, - [235] = {.index = 377, .length = 4}, - [236] = {.index = 374, .length = 3}, - [237] = {.index = 377, .length = 4}, - [238] = {.index = 381, .length = 4}, - [239] = {.index = 385, .length = 4}, - [240] = {.index = 389, .length = 3}, - [241] = {.index = 392, .length = 4}, - [242] = {.index = 396, .length = 3}, - [243] = {.index = 399, .length = 3}, - [244] = {.index = 402, .length = 3}, - [245] = {.index = 405, .length = 4}, - [246] = {.index = 409, .length = 2}, - [247] = {.index = 411, .length = 3}, - [248] = {.index = 414, .length = 4}, - [249] = {.index = 418, .length = 3}, - [250] = {.index = 421, .length = 3}, - [251] = {.index = 424, .length = 2}, - [253] = {.index = 426, .length = 3}, - [254] = {.index = 429, .length = 5}, - [255] = {.index = 434, .length = 4}, - [256] = {.index = 434, .length = 4}, - [257] = {.index = 438, .length = 3}, - [258] = {.index = 441, .length = 3}, - [259] = {.index = 444, .length = 3}, - [260] = {.index = 447, .length = 3}, - [261] = {.index = 450, .length = 2}, - [262] = {.index = 452, .length = 3}, - [263] = {.index = 452, .length = 3}, - [264] = {.index = 455, .length = 3}, - [265] = {.index = 458, .length = 4}, - [266] = {.index = 455, .length = 3}, - [267] = {.index = 458, .length = 4}, - [268] = {.index = 462, .length = 4}, - [269] = {.index = 462, .length = 4}, - [270] = {.index = 466, .length = 4}, - [271] = {.index = 470, .length = 5}, - [272] = {.index = 475, .length = 4}, - [273] = {.index = 479, .length = 2}, - [274] = {.index = 481, .length = 4}, - [275] = {.index = 485, .length = 4}, - [276] = {.index = 489, .length = 3}, - [277] = {.index = 492, .length = 4}, - [278] = {.index = 496, .length = 4}, - [279] = {.index = 500, .length = 3}, - [280] = {.index = 503, .length = 4}, - [281] = {.index = 503, .length = 4}, - [282] = {.index = 507, .length = 5}, - [283] = {.index = 512, .length = 4}, - [284] = {.index = 516, .length = 5}, - [285] = {.index = 521, .length = 4}, - [286] = {.index = 525, .length = 4}, - [287] = {.index = 529, .length = 3}, - [288] = {.index = 532, .length = 5}, + [232] = {.index = 374, .length = 2}, + [233] = {.index = 376, .length = 3}, + [234] = {.index = 374, .length = 2}, + [235] = {.index = 376, .length = 3}, + [236] = {.index = 379, .length = 3}, + [237] = {.index = 382, .length = 4}, + [238] = {.index = 379, .length = 3}, + [239] = {.index = 382, .length = 4}, + [240] = {.index = 386, .length = 4}, + [241] = {.index = 390, .length = 4}, + [242] = {.index = 394, .length = 3}, + [243] = {.index = 397, .length = 4}, + [244] = {.index = 401, .length = 2}, + [245] = {.index = 403, .length = 3}, + [246] = {.index = 406, .length = 3}, + [247] = {.index = 409, .length = 3}, + [248] = {.index = 412, .length = 4}, + [249] = {.index = 416, .length = 2}, + [250] = {.index = 418, .length = 3}, + [251] = {.index = 421, .length = 4}, + [252] = {.index = 425, .length = 3}, + [253] = {.index = 428, .length = 3}, + [254] = {.index = 431, .length = 2}, + [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}, + [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}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3268,345 +3272,359 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [271] = {field_name, 1}, {field_type, 4}, + [273] = + {field_name, 1}, + {field_type, 4}, {field_type_parameters, 2}, - [274] = + [276] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [277] = + [279] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [280] = + [282] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [283] = + [285] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [287] = + [289] = {field_alias, 4}, {field_name, 2}, - [289] = + [291] = {field_field, 1}, {field_value, 3}, - [291] = + [293] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [294] = + [296] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [298] = + [300] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [301] = + [303] = {field_body, 5}, {field_name, 3}, - [303] = + [305] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [306] = + [308] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [309] = + [311] = {field_name, 3}, {field_parameters, 4}, - [311] = + [313] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [314] = + [316] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [317] = + [319] = {field_name, 1}, {field_pattern, 3}, - [319] = + [321] = {field_parameters, 3}, {field_return_type, 5}, - [321] = + [323] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [324] = + [326] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [327] = + [329] = {field_name, 1}, {field_value, 3}, - [329] = + [331] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [333] = + [335] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [338] = + [340] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [342] = + [344] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [345] = + [347] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [348] = + [350] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [352] = + [354] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [356] = + [358] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [359] = + [361] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [362] = + [364] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [365] = + [367] = {field_name, 3}, {field_type, 5}, - [367] = + [369] = {field_type, 2}, {field_type, 3, .inherited = true}, - [369] = + [371] = + {field_name, 1}, + {field_type, 5}, + {field_type_parameters, 2}, + [374] = {field_trait, 3}, {field_type, 5}, - [371] = + [376] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [374] = + [379] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [377] = + [382] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [381] = + [386] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [385] = + [390] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [389] = + [394] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [392] = + [397] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [396] = + [401] = + {field_name, 2}, + {field_type, 5}, + [403] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [399] = + [406] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [402] = + [409] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [405] = + [412] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [409] = + [416] = {field_alias, 5}, {field_name, 3}, - [411] = + [418] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [414] = + [421] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [418] = + [425] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [421] = + [428] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [424] = + [431] = {field_name, 2}, {field_pattern, 4}, - [426] = + [433] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [429] = + [436] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [434] = + [441] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [438] = + [445] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [441] = + [448] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [444] = + [451] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [447] = + [454] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [450] = + [457] = {field_type, 3}, {field_type, 4, .inherited = true}, - [452] = + [459] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [455] = + [462] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [458] = + [465] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [462] = + [469] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [466] = + [473] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [470] = + [477] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [475] = + [482] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [479] = + [486] = {field_name, 4}, {field_type, 6}, - [481] = + [488] = + {field_name, 2}, + {field_type, 6}, + {field_type_parameters, 3}, + [491] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [485] = + [495] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [489] = + [499] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [492] = + [502] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [496] = + [506] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [500] = + [510] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [503] = + [513] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [507] = + [517] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [512] = + [522] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [516] = + [526] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [521] = + [531] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [525] = + [535] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [529] = + [539] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [532] = + [542] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3841,8 +3859,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [188] = { [1] = alias_sym_type_identifier, }, - [190] = { - [2] = alias_sym_type_identifier, + [189] = { + [1] = alias_sym_type_identifier, }, [191] = { [2] = alias_sym_type_identifier, @@ -3850,14 +3868,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [192] = { [2] = alias_sym_type_identifier, }, - [195] = { - [1] = alias_sym_field_identifier, - }, - [199] = { + [193] = { [2] = alias_sym_type_identifier, }, + [196] = { + [1] = alias_sym_field_identifier, + }, [200] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [201] = { [3] = alias_sym_type_identifier, @@ -3865,82 +3883,94 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [202] = { [3] = alias_sym_type_identifier, }, - [206] = { - [0] = alias_sym_type_identifier, + [203] = { + [3] = alias_sym_type_identifier, }, [207] = { - [1] = alias_sym_field_identifier, + [0] = alias_sym_type_identifier, }, [208] = { + [1] = alias_sym_field_identifier, + }, + [209] = { [2] = alias_sym_type_identifier, }, - [216] = { + [217] = { [2] = alias_sym_type_identifier, }, - [218] = { + [219] = { [3] = alias_sym_type_identifier, }, - [219] = { + [220] = { [3] = alias_sym_type_identifier, }, - [222] = { + [223] = { [2] = alias_sym_type_identifier, }, - [229] = { + [230] = { [1] = alias_sym_field_identifier, }, - [230] = { + [231] = { + [1] = alias_sym_type_identifier, + }, + [232] = { [3] = alias_sym_type_identifier, }, - [231] = { + [233] = { [3] = alias_sym_type_identifier, }, - [234] = { + [236] = { [3] = alias_sym_type_identifier, }, - [235] = { + [237] = { [3] = alias_sym_type_identifier, }, - [238] = { + [240] = { [2] = alias_sym_type_identifier, }, - [242] = { + [244] = { [2] = alias_sym_type_identifier, }, - [243] = { + [245] = { + [2] = alias_sym_type_identifier, + }, + [246] = { [3] = alias_sym_type_identifier, }, - [244] = { + [247] = { [3] = alias_sym_type_identifier, }, - [245] = { + [248] = { [3] = alias_sym_type_identifier, }, - [251] = { + [254] = { [2] = alias_sym_field_identifier, }, - [252] = { + [255] = { [1] = alias_sym_type_identifier, }, - [255] = { + [258] = { [3] = alias_sym_type_identifier, }, - [262] = { + [265] = { [3] = alias_sym_type_identifier, }, - [264] = { + [267] = { [4] = alias_sym_type_identifier, }, - [265] = { + [268] = { [4] = alias_sym_type_identifier, }, - [268] = { + [271] = { [3] = alias_sym_type_identifier, }, - [274] = { + [277] = { + [2] = alias_sym_type_identifier, + }, + [278] = { [3] = alias_sym_type_identifier, }, - [280] = { + [284] = { [4] = alias_sym_type_identifier, }, }; @@ -3959,70 +3989,70 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, + [3] = 3, [4] = 4, [5] = 5, [6] = 6, [7] = 7, [8] = 8, - [9] = 9, + [9] = 3, [10] = 2, [11] = 11, [12] = 6, [13] = 8, - [14] = 9, - [15] = 11, + [14] = 3, + [15] = 2, [16] = 11, [17] = 6, - [18] = 9, + [18] = 3, [19] = 2, [20] = 11, [21] = 6, - [22] = 9, + [22] = 3, [23] = 2, [24] = 11, [25] = 6, - [26] = 9, - [27] = 11, - [28] = 6, - [29] = 9, - [30] = 2, - [31] = 11, - [32] = 6, - [33] = 9, - [34] = 2, + [26] = 3, + [27] = 2, + [28] = 11, + [29] = 6, + [30] = 3, + [31] = 2, + [32] = 11, + [33] = 6, + [34] = 11, [35] = 35, [36] = 36, [37] = 37, - [38] = 37, - [39] = 39, - [40] = 39, + [38] = 36, + [39] = 37, + [40] = 40, [41] = 41, [42] = 42, [43] = 35, - [44] = 39, + [44] = 42, [45] = 35, - [46] = 35, - [47] = 42, - [48] = 41, - [49] = 36, - [50] = 37, - [51] = 39, - [52] = 37, - [53] = 41, + [46] = 41, + [47] = 40, + [48] = 36, + [49] = 37, + [50] = 36, + [51] = 37, + [52] = 35, + [53] = 36, [54] = 42, - [55] = 42, - [56] = 36, - [57] = 37, - [58] = 41, - [59] = 36, - [60] = 39, + [55] = 40, + [56] = 41, + [57] = 42, + [58] = 36, + [59] = 41, + [60] = 40, [61] = 37, - [62] = 39, + [62] = 36, [63] = 37, - [64] = 39, - [65] = 37, - [66] = 39, + [64] = 37, + [65] = 36, + [66] = 37, [67] = 67, [68] = 68, [69] = 69, @@ -4034,12 +4064,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [75] = 75, [76] = 76, [77] = 77, - [78] = 71, + [78] = 74, [79] = 72, - [80] = 68, - [81] = 74, - [82] = 75, - [83] = 76, + [80] = 71, + [81] = 75, + [82] = 76, + [83] = 77, [84] = 84, [85] = 84, [86] = 86, @@ -4047,71 +4077,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [88] = 88, [89] = 89, [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 91, + [91] = 88, + [92] = 89, + [93] = 90, + [94] = 94, [95] = 95, - [96] = 87, - [97] = 92, - [98] = 93, - [99] = 95, + [96] = 96, + [97] = 84, + [98] = 98, + [99] = 99, [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 101, - [105] = 88, - [106] = 89, - [107] = 90, - [108] = 103, - [109] = 101, - [110] = 102, - [111] = 103, - [112] = 88, - [113] = 88, - [114] = 89, - [115] = 90, - [116] = 89, - [117] = 90, - [118] = 101, - [119] = 102, - [120] = 103, - [121] = 88, - [122] = 89, - [123] = 90, - [124] = 101, - [125] = 102, - [126] = 103, - [127] = 101, - [128] = 88, - [129] = 89, - [130] = 90, - [131] = 102, - [132] = 103, - [133] = 102, + [101] = 86, + [102] = 87, + [103] = 94, + [104] = 98, + [105] = 105, + [106] = 88, + [107] = 89, + [108] = 90, + [109] = 95, + [110] = 96, + [111] = 84, + [112] = 112, + [113] = 100, + [114] = 88, + [115] = 89, + [116] = 90, + [117] = 95, + [118] = 96, + [119] = 84, + [120] = 88, + [121] = 89, + [122] = 90, + [123] = 95, + [124] = 96, + [125] = 88, + [126] = 89, + [127] = 90, + [128] = 95, + [129] = 95, + [130] = 96, + [131] = 84, + [132] = 96, + [133] = 99, [134] = 134, [135] = 135, - [136] = 136, + [136] = 134, [137] = 137, - [138] = 138, - [139] = 134, - [140] = 135, - [141] = 137, - [142] = 142, - [143] = 142, - [144] = 144, + [138] = 135, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 139, + [143] = 143, + [144] = 137, [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, - [150] = 149, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, [154] = 154, - [155] = 155, + [155] = 147, [156] = 156, [157] = 157, [158] = 158, @@ -4123,107 +4153,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [164] = 164, [165] = 165, [166] = 166, - [167] = 148, - [168] = 168, - [169] = 169, + [167] = 167, + [168] = 152, + [169] = 153, [170] = 170, [171] = 171, - [172] = 172, + [172] = 165, [173] = 173, [174] = 174, [175] = 175, - [176] = 163, - [177] = 177, + [176] = 176, + [177] = 158, [178] = 178, - [179] = 179, + [179] = 164, [180] = 180, [181] = 181, [182] = 182, - [183] = 181, - [184] = 182, - [185] = 138, - [186] = 179, - [187] = 177, - [188] = 159, - [189] = 155, - [190] = 157, - [191] = 179, - [192] = 177, - [193] = 157, - [194] = 179, - [195] = 177, - [196] = 157, - [197] = 152, - [198] = 198, - [199] = 169, - [200] = 151, - [201] = 154, + [183] = 183, + [184] = 160, + [185] = 151, + [186] = 186, + [187] = 157, + [188] = 145, + [189] = 143, + [190] = 173, + [191] = 157, + [192] = 145, + [193] = 173, + [194] = 157, + [195] = 145, + [196] = 173, + [197] = 197, + [198] = 178, + [199] = 180, + [200] = 182, + [201] = 201, [202] = 202, [203] = 203, [204] = 204, - [205] = 198, + [205] = 159, [206] = 206, [207] = 207, - [208] = 146, + [208] = 208, [209] = 209, [210] = 210, - [211] = 211, - [212] = 170, - [213] = 180, - [214] = 206, + [211] = 203, + [212] = 175, + [213] = 201, + [214] = 176, [215] = 215, - [216] = 216, + [216] = 215, [217] = 217, - [218] = 217, + [218] = 215, [219] = 219, [220] = 220, - [221] = 217, - [222] = 219, - [223] = 220, - [224] = 219, - [225] = 215, + [221] = 221, + [222] = 220, + [223] = 221, + [224] = 220, + [225] = 221, [226] = 226, [227] = 227, [228] = 228, - [229] = 229, - [230] = 230, - [231] = 220, - [232] = 216, - [233] = 229, - [234] = 230, - [235] = 215, - [236] = 215, - [237] = 220, - [238] = 217, - [239] = 219, - [240] = 226, - [241] = 228, - [242] = 220, - [243] = 227, - [244] = 217, + [229] = 228, + [230] = 215, + [231] = 226, + [232] = 220, + [233] = 228, + [234] = 227, + [235] = 217, + [236] = 236, + [237] = 236, + [238] = 220, + [239] = 228, + [240] = 240, + [241] = 221, + [242] = 242, + [243] = 242, + [244] = 228, [245] = 219, - [246] = 246, + [246] = 215, [247] = 247, [248] = 248, [249] = 249, [250] = 250, [251] = 251, [252] = 252, - [253] = 250, + [253] = 253, [254] = 254, [255] = 255, - [256] = 250, + [256] = 256, [257] = 257, [258] = 258, [259] = 259, [260] = 260, - [261] = 259, + [261] = 261, [262] = 262, [263] = 263, [264] = 264, [265] = 265, [266] = 266, - [267] = 251, + [267] = 267, [268] = 268, [269] = 269, [270] = 270, @@ -4236,221 +4266,221 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [277] = 277, [278] = 278, [279] = 279, - [280] = 264, + [280] = 280, [281] = 281, [282] = 282, [283] = 283, [284] = 284, - [285] = 257, + [285] = 280, [286] = 286, - [287] = 260, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 262, - [292] = 286, - [293] = 250, - [294] = 294, - [295] = 295, - [296] = 259, - [297] = 250, - [298] = 264, - [299] = 251, - [300] = 265, + [287] = 259, + [288] = 261, + [289] = 262, + [290] = 247, + [291] = 263, + [292] = 264, + [293] = 265, + [294] = 272, + [295] = 273, + [296] = 274, + [297] = 275, + [298] = 276, + [299] = 284, + [300] = 300, [301] = 301, [302] = 302, - [303] = 303, + [303] = 286, [304] = 259, - [305] = 305, - [306] = 266, - [307] = 286, - [308] = 308, - [309] = 308, - [310] = 274, - [311] = 275, - [312] = 283, - [313] = 265, - [314] = 283, - [315] = 257, - [316] = 260, - [317] = 264, - [318] = 265, - [319] = 266, - [320] = 274, - [321] = 275, - [322] = 278, - [323] = 284, + [305] = 261, + [306] = 262, + [307] = 247, + [308] = 263, + [309] = 264, + [310] = 265, + [311] = 272, + [312] = 273, + [313] = 274, + [314] = 275, + [315] = 276, + [316] = 316, + [317] = 284, + [318] = 286, + [319] = 319, + [320] = 286, + [321] = 321, + [322] = 259, + [323] = 261, [324] = 262, - [325] = 266, - [326] = 250, - [327] = 308, - [328] = 278, - [329] = 284, - [330] = 308, + [325] = 247, + [326] = 263, + [327] = 264, + [328] = 265, + [329] = 272, + [330] = 273, [331] = 274, - [332] = 332, - [333] = 275, - [334] = 332, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 278, - [340] = 284, - [341] = 262, - [342] = 281, + [332] = 275, + [333] = 276, + [334] = 284, + [335] = 276, + [336] = 276, + [337] = 276, + [338] = 276, + [339] = 339, + [340] = 280, + [341] = 301, + [342] = 342, [343] = 343, - [344] = 282, - [345] = 343, - [346] = 263, - [347] = 277, - [348] = 338, - [349] = 338, - [350] = 247, - [351] = 301, - [352] = 335, - [353] = 305, - [354] = 248, - [355] = 252, - [356] = 258, - [357] = 271, - [358] = 273, - [359] = 276, - [360] = 290, - [361] = 295, - [362] = 250, - [363] = 281, - [364] = 364, - [365] = 263, - [366] = 250, - [367] = 301, - [368] = 258, - [369] = 283, - [370] = 281, - [371] = 257, - [372] = 263, - [373] = 260, - [374] = 258, - [375] = 338, + [344] = 250, + [345] = 280, + [346] = 346, + [347] = 347, + [348] = 301, + [349] = 250, + [350] = 300, + [351] = 351, + [352] = 302, + [353] = 255, + [354] = 281, + [355] = 316, + [356] = 321, + [357] = 342, + [358] = 343, + [359] = 351, + [360] = 251, + [361] = 253, + [362] = 256, + [363] = 260, + [364] = 268, + [365] = 270, + [366] = 271, + [367] = 279, + [368] = 283, + [369] = 302, + [370] = 316, + [371] = 343, + [372] = 260, + [373] = 302, + [374] = 316, + [375] = 260, [376] = 376, [377] = 377, [378] = 378, [379] = 379, [380] = 380, - [381] = 380, - [382] = 376, - [383] = 377, + [381] = 381, + [382] = 377, + [383] = 376, [384] = 384, - [385] = 385, - [386] = 377, - [387] = 387, - [388] = 380, - [389] = 376, + [385] = 377, + [386] = 376, + [387] = 384, + [388] = 384, + [389] = 389, [390] = 390, [391] = 391, [392] = 392, [393] = 393, [394] = 394, - [395] = 203, + [395] = 395, [396] = 396, [397] = 397, [398] = 398, - [399] = 399, + [399] = 396, [400] = 400, [401] = 401, - [402] = 402, - [403] = 403, + [402] = 209, + [403] = 396, [404] = 404, - [405] = 204, + [405] = 405, [406] = 406, - [407] = 407, + [407] = 210, [408] = 408, [409] = 409, - [410] = 391, + [410] = 410, [411] = 411, [412] = 412, [413] = 413, - [414] = 391, + [414] = 414, [415] = 415, [416] = 416, [417] = 417, [418] = 418, - [419] = 402, + [419] = 411, [420] = 420, - [421] = 421, - [422] = 421, - [423] = 421, + [421] = 420, + [422] = 420, + [423] = 423, [424] = 424, [425] = 425, - [426] = 426, + [426] = 425, [427] = 427, - [428] = 426, - [429] = 425, + [428] = 428, + [429] = 429, [430] = 427, - [431] = 431, - [432] = 431, - [433] = 425, - [434] = 431, + [431] = 427, + [432] = 428, + [433] = 429, + [434] = 429, [435] = 435, [436] = 435, [437] = 437, [438] = 438, [439] = 439, - [440] = 440, + [440] = 439, [441] = 441, - [442] = 440, - [443] = 439, + [442] = 439, + [443] = 443, [444] = 439, - [445] = 440, - [446] = 439, - [447] = 441, - [448] = 440, + [445] = 441, + [446] = 443, + [447] = 443, + [448] = 443, [449] = 441, [450] = 441, [451] = 451, - [452] = 451, - [453] = 453, - [454] = 451, - [455] = 451, + [452] = 452, + [453] = 452, + [454] = 452, + [455] = 452, [456] = 456, [457] = 456, [458] = 456, [459] = 456, - [460] = 268, - [461] = 387, - [462] = 379, - [463] = 385, - [464] = 464, - [465] = 378, - [466] = 384, - [467] = 464, - [468] = 464, - [469] = 464, - [470] = 396, - [471] = 397, - [472] = 417, - [473] = 415, - [474] = 418, - [475] = 392, - [476] = 398, - [477] = 400, - [478] = 478, - [479] = 393, - [480] = 394, - [481] = 399, - [482] = 407, - [483] = 390, - [484] = 484, - [485] = 408, - [486] = 406, - [487] = 409, - [488] = 412, - [489] = 411, - [490] = 416, - [491] = 491, + [460] = 319, + [461] = 461, + [462] = 389, + [463] = 380, + [464] = 381, + [465] = 379, + [466] = 461, + [467] = 461, + [468] = 378, + [469] = 461, + [470] = 470, + [471] = 415, + [472] = 472, + [473] = 413, + [474] = 414, + [475] = 406, + [476] = 404, + [477] = 412, + [478] = 395, + [479] = 391, + [480] = 480, + [481] = 417, + [482] = 416, + [483] = 405, + [484] = 393, + [485] = 409, + [486] = 400, + [487] = 390, + [488] = 410, + [489] = 418, + [490] = 397, + [491] = 408, [492] = 492, [493] = 492, - [494] = 387, + [494] = 494, [495] = 495, [496] = 496, [497] = 497, @@ -4548,7 +4578,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [589] = 589, [590] = 590, [591] = 591, - [592] = 384, + [592] = 592, [593] = 593, [594] = 594, [595] = 595, @@ -4564,14 +4594,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [605] = 605, [606] = 606, [607] = 607, - [608] = 378, + [608] = 608, [609] = 609, [610] = 610, [611] = 611, - [612] = 385, + [612] = 612, [613] = 613, [614] = 614, - [615] = 379, + [615] = 615, [616] = 616, [617] = 617, [618] = 618, @@ -4597,7 +4627,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [638] = 638, [639] = 639, [640] = 640, - [641] = 568, + [641] = 641, [642] = 642, [643] = 643, [644] = 644, @@ -4613,9 +4643,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [654] = 654, [655] = 655, [656] = 656, - [657] = 657, + [657] = 381, [658] = 658, - [659] = 556, + [659] = 659, [660] = 660, [661] = 661, [662] = 662, @@ -4624,11 +4654,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [665] = 665, [666] = 666, [667] = 667, - [668] = 668, + [668] = 389, [669] = 669, - [670] = 590, - [671] = 671, - [672] = 672, + [670] = 380, + [671] = 379, + [672] = 378, [673] = 673, [674] = 674, [675] = 675, @@ -4644,21 +4674,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [685] = 685, [686] = 686, [687] = 687, - [688] = 688, + [688] = 660, [689] = 689, [690] = 690, [691] = 691, [692] = 692, - [693] = 693, + [693] = 685, [694] = 694, [695] = 695, [696] = 696, [697] = 697, [698] = 698, [699] = 699, - [700] = 700, + [700] = 696, [701] = 701, - [702] = 702, + [702] = 664, [703] = 703, [704] = 704, [705] = 705, @@ -4729,40 +4759,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [770] = 770, [771] = 771, [772] = 772, - [773] = 689, + [773] = 773, [774] = 774, [775] = 775, - [776] = 775, + [776] = 776, [777] = 777, [778] = 778, [779] = 779, - [780] = 778, + [780] = 780, [781] = 781, - [782] = 777, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, [786] = 786, - [787] = 787, - [788] = 788, + [787] = 786, + [788] = 783, [789] = 789, - [790] = 790, + [790] = 789, [791] = 791, - [792] = 788, + [792] = 792, [793] = 793, [794] = 794, - [795] = 783, - [796] = 794, + [795] = 795, + [796] = 796, [797] = 797, - [798] = 798, - [799] = 799, - [800] = 787, - [801] = 801, - [802] = 791, - [803] = 801, - [804] = 804, - [805] = 805, - [806] = 805, + [798] = 797, + [799] = 791, + [800] = 795, + [801] = 796, + [802] = 802, + [803] = 803, + [804] = 792, + [805] = 793, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, @@ -4775,108 +4805,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [816] = 816, [817] = 817, [818] = 818, - [819] = 816, - [820] = 815, + [819] = 819, + [820] = 820, [821] = 821, - [822] = 812, + [822] = 822, [823] = 823, - [824] = 809, - [825] = 813, - [826] = 808, - [827] = 827, - [828] = 810, - [829] = 827, - [830] = 830, + [824] = 823, + [825] = 825, + [826] = 826, + [827] = 826, + [828] = 828, + [829] = 825, + [830] = 828, [831] = 831, - [832] = 818, - [833] = 805, - [834] = 834, - [835] = 835, - [836] = 821, - [837] = 821, - [838] = 805, - [839] = 821, - [840] = 831, + [832] = 832, + [833] = 833, + [834] = 815, + [835] = 819, + [836] = 836, + [837] = 836, + [838] = 838, + [839] = 820, + [840] = 821, [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 843, - [846] = 843, - [847] = 843, - [848] = 842, + [842] = 838, + [843] = 833, + [844] = 838, + [845] = 833, + [846] = 838, + [847] = 833, + [848] = 816, [849] = 849, [850] = 850, - [851] = 851, + [851] = 850, [852] = 852, - [853] = 852, - [854] = 854, + [853] = 850, + [854] = 850, [855] = 855, - [856] = 856, - [857] = 852, - [858] = 858, + [856] = 852, + [857] = 857, + [858] = 857, [859] = 859, - [860] = 850, + [860] = 860, [861] = 861, - [862] = 851, - [863] = 852, + [862] = 862, + [863] = 863, [864] = 864, - [865] = 855, - [866] = 854, + [865] = 864, + [866] = 861, [867] = 867, - [868] = 851, - [869] = 855, - [870] = 854, - [871] = 849, - [872] = 872, - [873] = 873, - [874] = 874, + [868] = 862, + [869] = 867, + [870] = 870, + [871] = 860, + [872] = 862, + [873] = 857, + [874] = 860, [875] = 875, [876] = 876, [877] = 877, - [878] = 878, - [879] = 879, + [878] = 861, + [879] = 857, [880] = 880, [881] = 881, [882] = 882, - [883] = 881, - [884] = 882, + [883] = 883, + [884] = 884, [885] = 885, [886] = 886, - [887] = 872, + [887] = 887, [888] = 888, [889] = 889, - [890] = 878, - [891] = 888, + [890] = 890, + [891] = 891, [892] = 892, [893] = 893, [894] = 894, [895] = 895, [896] = 896, [897] = 897, - [898] = 892, + [898] = 882, [899] = 899, - [900] = 894, - [901] = 895, - [902] = 896, + [900] = 900, + [901] = 901, + [902] = 902, [903] = 903, - [904] = 885, - [905] = 881, - [906] = 882, - [907] = 885, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, [908] = 908, [909] = 909, - [910] = 872, - [911] = 889, - [912] = 878, - [913] = 888, - [914] = 892, - [915] = 915, - [916] = 916, - [917] = 894, - [918] = 895, - [919] = 896, - [920] = 897, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 905, + [916] = 887, + [917] = 917, + [918] = 918, + [919] = 914, + [920] = 889, [921] = 921, [922] = 922, [923] = 923, @@ -4890,480 +4920,480 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [931] = 931, [932] = 932, [933] = 933, - [934] = 889, - [935] = 935, + [934] = 887, + [935] = 897, [936] = 936, [937] = 937, [938] = 938, [939] = 939, - [940] = 940, - [941] = 880, - [942] = 942, + [940] = 882, + [941] = 899, + [942] = 901, [943] = 943, - [944] = 944, - [945] = 927, - [946] = 946, - [947] = 947, - [948] = 881, - [949] = 882, - [950] = 893, + [944] = 884, + [945] = 914, + [946] = 889, + [947] = 897, + [948] = 909, + [949] = 911, + [950] = 887, [951] = 951, - [952] = 952, - [953] = 872, - [954] = 878, + [952] = 907, + [953] = 882, + [954] = 912, [955] = 955, - [956] = 956, + [956] = 899, [957] = 957, - [958] = 958, + [958] = 883, [959] = 959, - [960] = 897, - [961] = 880, - [962] = 893, + [960] = 960, + [961] = 961, + [962] = 962, [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 968, + [964] = 895, + [965] = 896, + [966] = 886, + [967] = 890, + [968] = 951, [969] = 969, - [970] = 879, - [971] = 951, - [972] = 931, - [973] = 909, - [974] = 924, - [975] = 929, - [976] = 930, - [977] = 936, - [978] = 937, - [979] = 944, - [980] = 947, - [981] = 981, - [982] = 928, - [983] = 939, - [984] = 940, - [985] = 952, - [986] = 956, - [987] = 959, - [988] = 963, - [989] = 964, - [990] = 874, - [991] = 875, - [992] = 876, - [993] = 908, - [994] = 921, - [995] = 922, - [996] = 923, - [997] = 932, - [998] = 933, - [999] = 999, - [1000] = 935, - [1001] = 938, - [1002] = 946, - [1003] = 1003, - [1004] = 968, - [1005] = 969, - [1006] = 981, - [1007] = 1003, - [1008] = 873, - [1009] = 1009, + [970] = 884, + [971] = 907, + [972] = 972, + [973] = 921, + [974] = 925, + [975] = 926, + [976] = 928, + [977] = 930, + [978] = 932, + [979] = 979, + [980] = 936, + [981] = 937, + [982] = 969, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 984, + [987] = 939, + [988] = 892, + [989] = 900, + [990] = 960, + [991] = 991, + [992] = 894, + [993] = 902, + [994] = 903, + [995] = 908, + [996] = 913, + [997] = 924, + [998] = 957, + [999] = 963, + [1000] = 1000, + [1001] = 961, + [1002] = 917, + [1003] = 918, + [1004] = 933, + [1005] = 909, + [1006] = 959, + [1007] = 979, + [1008] = 1000, + [1009] = 911, [1010] = 943, - [1011] = 879, - [1012] = 999, + [1011] = 912, + [1012] = 991, [1013] = 1013, - [1014] = 772, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 772, - [1020] = 1020, - [1021] = 1021, - [1022] = 1022, + [1014] = 962, + [1015] = 985, + [1016] = 983, + [1017] = 923, + [1018] = 955, + [1019] = 1019, + [1020] = 922, + [1021] = 914, + [1022] = 889, [1023] = 1023, - [1024] = 1024, - [1025] = 1025, - [1026] = 204, - [1027] = 203, - [1028] = 384, - [1029] = 378, - [1030] = 385, - [1031] = 379, - [1032] = 387, + [1024] = 901, + [1025] = 1013, + [1026] = 905, + [1027] = 922, + [1028] = 1013, + [1029] = 1029, + [1030] = 717, + [1031] = 1031, + [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1035, - [1036] = 401, + [1035] = 717, + [1036] = 1036, [1037] = 1037, - [1038] = 413, + [1038] = 1038, [1039] = 1039, - [1040] = 572, + [1040] = 1040, [1041] = 1041, - [1042] = 690, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 1047, - [1048] = 636, - [1049] = 531, - [1050] = 1050, - [1051] = 729, + [1042] = 381, + [1043] = 379, + [1044] = 378, + [1045] = 210, + [1046] = 380, + [1047] = 394, + [1048] = 209, + [1049] = 1049, + [1050] = 401, + [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 1054, + [1054] = 389, [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1054, - [1059] = 1013, + [1058] = 1058, + [1059] = 620, [1060] = 1060, [1061] = 1061, - [1062] = 1061, + [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 1061, - [1066] = 1054, - [1067] = 1067, + [1065] = 521, + [1066] = 718, + [1067] = 563, [1068] = 1068, - [1069] = 619, - [1070] = 550, - [1071] = 551, - [1072] = 552, - [1073] = 549, - [1074] = 560, - [1075] = 561, - [1076] = 562, - [1077] = 563, - [1078] = 564, - [1079] = 565, - [1080] = 571, - [1081] = 577, + [1069] = 1069, + [1070] = 745, + [1071] = 1071, + [1072] = 1071, + [1073] = 1073, + [1074] = 1029, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1079, + [1081] = 1071, [1082] = 1082, [1083] = 1083, [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 598, - [1088] = 599, - [1089] = 604, - [1090] = 606, - [1091] = 607, - [1092] = 609, - [1093] = 610, - [1094] = 611, - [1095] = 617, - [1096] = 618, - [1097] = 620, - [1098] = 621, - [1099] = 622, - [1100] = 624, - [1101] = 627, - [1102] = 629, - [1103] = 630, - [1104] = 634, - [1105] = 637, - [1106] = 638, - [1107] = 639, - [1108] = 642, - [1109] = 643, - [1110] = 644, - [1111] = 645, - [1112] = 646, - [1113] = 647, - [1114] = 648, - [1115] = 649, - [1116] = 652, - [1117] = 653, + [1085] = 1079, + [1086] = 1040, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 435, + [1097] = 1097, + [1098] = 497, + [1099] = 1038, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 659, + [1104] = 663, + [1105] = 1039, + [1106] = 1106, + [1107] = 1037, + [1108] = 1108, + [1109] = 1109, + [1110] = 1036, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 630, + [1117] = 319, [1118] = 654, [1119] = 655, [1120] = 656, - [1121] = 657, - [1122] = 658, - [1123] = 662, - [1124] = 663, - [1125] = 664, - [1126] = 665, - [1127] = 666, - [1128] = 667, - [1129] = 668, - [1130] = 669, - [1131] = 673, - [1132] = 674, - [1133] = 675, - [1134] = 676, + [1121] = 667, + [1122] = 669, + [1123] = 673, + [1124] = 675, + [1125] = 676, + [1126] = 677, + [1127] = 678, + [1128] = 680, + [1129] = 684, + [1130] = 686, + [1131] = 689, + [1132] = 694, + [1133] = 695, + [1134] = 1134, [1135] = 1135, - [1136] = 685, - [1137] = 688, + [1136] = 1136, + [1137] = 1137, [1138] = 1138, - [1139] = 1139, - [1140] = 698, - [1141] = 700, - [1142] = 702, - [1143] = 703, - [1144] = 704, - [1145] = 705, - [1146] = 706, - [1147] = 707, - [1148] = 709, - [1149] = 710, - [1150] = 711, - [1151] = 712, - [1152] = 713, - [1153] = 717, - [1154] = 718, - [1155] = 719, - [1156] = 720, - [1157] = 721, - [1158] = 723, - [1159] = 724, - [1160] = 728, - [1161] = 616, - [1162] = 730, - [1163] = 731, - [1164] = 732, - [1165] = 733, - [1166] = 734, - [1167] = 735, - [1168] = 736, - [1169] = 737, - [1170] = 738, - [1171] = 739, - [1172] = 740, - [1173] = 741, - [1174] = 742, - [1175] = 744, - [1176] = 745, - [1177] = 746, - [1178] = 747, - [1179] = 748, - [1180] = 750, - [1181] = 752, - [1182] = 753, - [1183] = 754, - [1184] = 755, - [1185] = 756, - [1186] = 757, - [1187] = 758, - [1188] = 759, - [1189] = 768, - [1190] = 770, - [1191] = 1191, - [1192] = 1192, - [1193] = 559, - [1194] = 625, - [1195] = 626, - [1196] = 684, - [1197] = 763, - [1198] = 506, - [1199] = 507, - [1200] = 512, - [1201] = 513, - [1202] = 515, - [1203] = 518, - [1204] = 521, - [1205] = 527, - [1206] = 528, - [1207] = 529, - [1208] = 536, - [1209] = 540, - [1210] = 541, - [1211] = 544, - [1212] = 553, - [1213] = 554, - [1214] = 558, - [1215] = 566, - [1216] = 573, - [1217] = 574, - [1218] = 576, - [1219] = 578, - [1220] = 579, - [1221] = 580, - [1222] = 581, - [1223] = 582, - [1224] = 583, - [1225] = 584, - [1226] = 585, - [1227] = 586, - [1228] = 589, - [1229] = 591, - [1230] = 593, - [1231] = 594, - [1232] = 595, - [1233] = 601, - [1234] = 602, - [1235] = 603, - [1236] = 605, - [1237] = 613, - [1238] = 614, - [1239] = 623, - [1240] = 1240, - [1241] = 1241, - [1242] = 632, - [1243] = 633, - [1244] = 640, - [1245] = 650, - [1246] = 660, - [1247] = 671, - [1248] = 672, - [1249] = 680, - [1250] = 681, - [1251] = 682, - [1252] = 686, - [1253] = 691, - [1254] = 692, - [1255] = 693, - [1256] = 694, - [1257] = 697, - [1258] = 699, - [1259] = 701, - [1260] = 708, - [1261] = 714, - [1262] = 715, - [1263] = 716, - [1264] = 722, - [1265] = 725, - [1266] = 726, - [1267] = 743, - [1268] = 749, - [1269] = 751, - [1270] = 760, - [1271] = 764, - [1272] = 765, - [1273] = 766, - [1274] = 767, - [1275] = 769, - [1276] = 771, - [1277] = 651, - [1278] = 495, - [1279] = 496, - [1280] = 497, - [1281] = 498, - [1282] = 499, - [1283] = 500, - [1284] = 501, - [1285] = 502, - [1286] = 503, - [1287] = 504, - [1288] = 505, - [1289] = 508, - [1290] = 509, - [1291] = 510, - [1292] = 511, - [1293] = 1293, - [1294] = 1021, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, - [1298] = 598, - [1299] = 1299, - [1300] = 1300, - [1301] = 567, - [1302] = 569, - [1303] = 1025, - [1304] = 435, - [1305] = 772, - [1306] = 1306, - [1307] = 1023, - [1308] = 1308, - [1309] = 1022, - [1310] = 1310, - [1311] = 1311, - [1312] = 1312, - [1313] = 772, - [1314] = 1020, - [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1320, - [1321] = 570, - [1322] = 1322, - [1323] = 268, - [1324] = 596, - [1325] = 597, - [1326] = 600, - [1327] = 1327, - [1328] = 628, - [1329] = 631, - [1330] = 635, - [1331] = 1331, - [1332] = 661, - [1333] = 677, - [1334] = 678, - [1335] = 679, - [1336] = 1025, - [1337] = 683, - [1338] = 687, - [1339] = 695, - [1340] = 696, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 761, - [1346] = 1346, - [1347] = 762, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 514, - [1356] = 516, - [1357] = 517, - [1358] = 519, - [1359] = 520, - [1360] = 522, - [1361] = 523, - [1362] = 524, - [1363] = 525, - [1364] = 526, - [1365] = 532, - [1366] = 533, - [1367] = 534, - [1368] = 535, - [1369] = 537, - [1370] = 538, - [1371] = 539, - [1372] = 542, - [1373] = 543, - [1374] = 545, - [1375] = 546, - [1376] = 547, - [1377] = 548, - [1378] = 557, - [1379] = 772, - [1380] = 416, - [1381] = 1381, - [1382] = 1382, - [1383] = 417, - [1384] = 151, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 393, - [1389] = 394, - [1390] = 1025, - [1391] = 1391, + [1139] = 726, + [1140] = 727, + [1141] = 728, + [1142] = 730, + [1143] = 731, + [1144] = 737, + [1145] = 738, + [1146] = 739, + [1147] = 740, + [1148] = 741, + [1149] = 746, + [1150] = 747, + [1151] = 748, + [1152] = 749, + [1153] = 750, + [1154] = 752, + [1155] = 754, + [1156] = 757, + [1157] = 767, + [1158] = 769, + [1159] = 773, + [1160] = 775, + [1161] = 778, + [1162] = 780, + [1163] = 666, + [1164] = 615, + [1165] = 618, + [1166] = 674, + [1167] = 709, + [1168] = 712, + [1169] = 714, + [1170] = 716, + [1171] = 772, + [1172] = 639, + [1173] = 640, + [1174] = 658, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 768, + [1180] = 770, + [1181] = 779, + [1182] = 494, + [1183] = 517, + [1184] = 519, + [1185] = 550, + [1186] = 551, + [1187] = 608, + [1188] = 609, + [1189] = 610, + [1190] = 611, + [1191] = 612, + [1192] = 613, + [1193] = 614, + [1194] = 616, + [1195] = 617, + [1196] = 619, + [1197] = 621, + [1198] = 622, + [1199] = 623, + [1200] = 624, + [1201] = 625, + [1202] = 626, + [1203] = 627, + [1204] = 628, + [1205] = 629, + [1206] = 631, + [1207] = 632, + [1208] = 633, + [1209] = 634, + [1210] = 635, + [1211] = 636, + [1212] = 637, + [1213] = 638, + [1214] = 781, + [1215] = 642, + [1216] = 643, + [1217] = 644, + [1218] = 645, + [1219] = 646, + [1220] = 647, + [1221] = 648, + [1222] = 649, + [1223] = 650, + [1224] = 651, + [1225] = 652, + [1226] = 653, + [1227] = 661, + [1228] = 665, + [1229] = 1229, + [1230] = 1230, + [1231] = 679, + [1232] = 681, + [1233] = 682, + [1234] = 683, + [1235] = 687, + [1236] = 690, + [1237] = 691, + [1238] = 692, + [1239] = 697, + [1240] = 698, + [1241] = 699, + [1242] = 701, + [1243] = 703, + [1244] = 704, + [1245] = 705, + [1246] = 706, + [1247] = 707, + [1248] = 708, + [1249] = 710, + [1250] = 711, + [1251] = 715, + [1252] = 719, + [1253] = 720, + [1254] = 721, + [1255] = 722, + [1256] = 723, + [1257] = 724, + [1258] = 1258, + [1259] = 729, + [1260] = 732, + [1261] = 733, + [1262] = 734, + [1263] = 735, + [1264] = 736, + [1265] = 742, + [1266] = 743, + [1267] = 751, + [1268] = 753, + [1269] = 755, + [1270] = 756, + [1271] = 758, + [1272] = 759, + [1273] = 760, + [1274] = 761, + [1275] = 762, + [1276] = 763, + [1277] = 764, + [1278] = 765, + [1279] = 766, + [1280] = 774, + [1281] = 776, + [1282] = 1282, + [1283] = 1283, + [1284] = 495, + [1285] = 496, + [1286] = 498, + [1287] = 499, + [1288] = 500, + [1289] = 501, + [1290] = 502, + [1291] = 503, + [1292] = 504, + [1293] = 505, + [1294] = 506, + [1295] = 507, + [1296] = 508, + [1297] = 509, + [1298] = 510, + [1299] = 511, + [1300] = 512, + [1301] = 513, + [1302] = 514, + [1303] = 515, + [1304] = 516, + [1305] = 518, + [1306] = 520, + [1307] = 522, + [1308] = 523, + [1309] = 524, + [1310] = 525, + [1311] = 526, + [1312] = 527, + [1313] = 528, + [1314] = 529, + [1315] = 530, + [1316] = 531, + [1317] = 532, + [1318] = 533, + [1319] = 534, + [1320] = 535, + [1321] = 536, + [1322] = 537, + [1323] = 538, + [1324] = 539, + [1325] = 540, + [1326] = 541, + [1327] = 542, + [1328] = 543, + [1329] = 544, + [1330] = 545, + [1331] = 546, + [1332] = 547, + [1333] = 548, + [1334] = 549, + [1335] = 1335, + [1336] = 1336, + [1337] = 552, + [1338] = 553, + [1339] = 554, + [1340] = 555, + [1341] = 556, + [1342] = 557, + [1343] = 558, + [1344] = 559, + [1345] = 560, + [1346] = 561, + [1347] = 562, + [1348] = 564, + [1349] = 565, + [1350] = 566, + [1351] = 567, + [1352] = 568, + [1353] = 569, + [1354] = 570, + [1355] = 571, + [1356] = 572, + [1357] = 573, + [1358] = 574, + [1359] = 575, + [1360] = 576, + [1361] = 577, + [1362] = 578, + [1363] = 579, + [1364] = 580, + [1365] = 581, + [1366] = 582, + [1367] = 583, + [1368] = 584, + [1369] = 585, + [1370] = 586, + [1371] = 587, + [1372] = 588, + [1373] = 589, + [1374] = 590, + [1375] = 591, + [1376] = 592, + [1377] = 593, + [1378] = 594, + [1379] = 595, + [1380] = 596, + [1381] = 597, + [1382] = 598, + [1383] = 599, + [1384] = 600, + [1385] = 601, + [1386] = 602, + [1387] = 603, + [1388] = 604, + [1389] = 605, + [1390] = 606, + [1391] = 607, [1392] = 1392, - [1393] = 396, + [1393] = 768, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1397, - [1398] = 1398, + [1397] = 717, + [1398] = 717, [1399] = 1399, - [1400] = 1400, + [1400] = 1040, [1401] = 1401, [1402] = 1402, - [1403] = 378, + [1403] = 725, [1404] = 1404, [1405] = 1405, - [1406] = 407, - [1407] = 408, + [1406] = 1406, + [1407] = 1407, [1408] = 1408, [1409] = 1409, [1410] = 1410, @@ -5371,102 +5401,102 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1412] = 1412, [1413] = 1413, [1414] = 1414, - [1415] = 1415, + [1415] = 209, [1416] = 1416, - [1417] = 392, - [1418] = 1418, + [1417] = 1417, + [1418] = 390, [1419] = 1419, [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 1423, - [1424] = 1424, + [1423] = 410, + [1424] = 378, [1425] = 1425, [1426] = 1426, - [1427] = 180, + [1427] = 1427, [1428] = 1428, [1429] = 1429, [1430] = 1430, - [1431] = 399, - [1432] = 401, - [1433] = 400, - [1434] = 390, + [1431] = 1431, + [1432] = 1432, + [1433] = 1031, + [1434] = 381, [1435] = 1435, [1436] = 1436, - [1437] = 154, - [1438] = 1438, + [1437] = 1437, + [1438] = 397, [1439] = 1439, [1440] = 1440, - [1441] = 379, + [1441] = 1441, [1442] = 1442, - [1443] = 411, - [1444] = 204, - [1445] = 1445, + [1443] = 1443, + [1444] = 1444, + [1445] = 404, [1446] = 1446, - [1447] = 406, + [1447] = 405, [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 1451, - [1452] = 409, - [1453] = 415, - [1454] = 387, - [1455] = 1455, - [1456] = 1456, - [1457] = 412, - [1458] = 413, - [1459] = 1459, + [1449] = 409, + [1450] = 400, + [1451] = 210, + [1452] = 418, + [1453] = 414, + [1454] = 389, + [1455] = 412, + [1456] = 413, + [1457] = 1457, + [1458] = 1458, + [1459] = 176, [1460] = 1460, - [1461] = 1461, + [1461] = 415, [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 169, + [1465] = 416, [1466] = 1466, - [1467] = 1467, + [1467] = 406, [1468] = 1468, [1469] = 1469, [1470] = 1470, - [1471] = 385, + [1471] = 1471, [1472] = 1472, [1473] = 1473, [1474] = 1474, [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, + [1476] = 395, + [1477] = 401, + [1478] = 182, + [1479] = 391, [1480] = 1480, [1481] = 1481, - [1482] = 1015, + [1482] = 417, [1483] = 1483, - [1484] = 1484, + [1484] = 175, [1485] = 1485, - [1486] = 384, - [1487] = 203, - [1488] = 397, - [1489] = 1489, - [1490] = 1490, - [1491] = 398, + [1486] = 1486, + [1487] = 1487, + [1488] = 393, + [1489] = 379, + [1490] = 408, + [1491] = 394, [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 170, + [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 1500, + [1500] = 717, [1501] = 1501, - [1502] = 1502, - [1503] = 418, + [1502] = 1040, + [1503] = 1503, [1504] = 1504, - [1505] = 1504, + [1505] = 178, [1506] = 1506, - [1507] = 1504, + [1507] = 1507, [1508] = 1508, - [1509] = 1025, - [1510] = 1025, + [1509] = 1509, + [1510] = 1510, [1511] = 1511, [1512] = 1512, [1513] = 1513, @@ -5477,630 +5507,630 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 1024, + [1521] = 1521, [1522] = 1522, - [1523] = 1523, + [1523] = 180, [1524] = 1524, [1525] = 1525, - [1526] = 1526, + [1526] = 380, [1527] = 1527, - [1528] = 1524, - [1529] = 1529, + [1528] = 1528, + [1529] = 1040, [1530] = 1530, - [1531] = 1531, - [1532] = 1519, - [1533] = 1517, - [1534] = 1055, + [1531] = 1528, + [1532] = 1040, + [1533] = 1528, + [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, [1538] = 1538, - [1539] = 1033, + [1539] = 1078, [1540] = 1540, [1541] = 1541, - [1542] = 1034, + [1542] = 1041, [1543] = 1543, - [1544] = 1035, + [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1055, - [1548] = 1055, - [1549] = 1477, - [1550] = 1354, - [1551] = 1041, - [1552] = 1354, - [1553] = 1039, - [1554] = 1300, - [1555] = 1043, - [1556] = 1046, - [1557] = 1322, - [1558] = 1050, - [1559] = 1331, - [1560] = 1044, - [1561] = 1331, - [1562] = 1474, - [1563] = 1045, - [1564] = 1474, - [1565] = 1047, - [1566] = 1322, - [1567] = 1300, - [1568] = 1568, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1546, + [1552] = 1552, + [1553] = 1535, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1549, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1078, + [1564] = 1078, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1053, [1569] = 1569, - [1570] = 1240, - [1571] = 1477, - [1572] = 1052, - [1573] = 1138, - [1574] = 1346, - [1575] = 1575, - [1576] = 1576, - [1577] = 1569, - [1578] = 1064, - [1579] = 1568, - [1580] = 1580, - [1581] = 1575, - [1582] = 1442, - [1583] = 1576, - [1584] = 1506, - [1585] = 1463, - [1586] = 1575, - [1587] = 268, - [1588] = 1568, - [1589] = 1082, - [1590] = 1191, - [1591] = 1463, - [1592] = 1346, - [1593] = 1568, - [1594] = 1576, - [1595] = 1580, - [1596] = 1442, - [1597] = 1575, - [1598] = 1068, - [1599] = 1474, - [1600] = 1508, - [1601] = 1060, - [1602] = 1349, - [1603] = 1308, - [1604] = 1310, - [1605] = 1311, - [1606] = 1315, - [1607] = 1317, - [1608] = 1318, - [1609] = 1319, - [1610] = 1320, - [1611] = 1522, - [1612] = 1518, - [1613] = 1348, - [1614] = 1351, - [1615] = 1352, - [1616] = 1353, - [1617] = 1083, - [1618] = 1084, - [1619] = 1086, - [1620] = 1537, - [1621] = 1139, - [1622] = 1512, - [1623] = 1192, - [1624] = 1516, - [1625] = 1525, - [1626] = 1241, - [1627] = 1527, - [1628] = 1531, - [1629] = 1536, - [1630] = 1297, - [1631] = 1514, - [1632] = 1515, - [1633] = 1342, - [1634] = 1343, - [1635] = 1520, - [1636] = 1508, - [1637] = 1637, - [1638] = 384, - [1639] = 1506, - [1640] = 378, - [1641] = 385, - [1642] = 379, - [1643] = 387, - [1644] = 1316, - [1645] = 1344, - [1646] = 1511, - [1647] = 1530, - [1648] = 1523, - [1649] = 1526, - [1650] = 1529, - [1651] = 1651, - [1652] = 1652, - [1653] = 1637, - [1654] = 1651, + [1570] = 1051, + [1571] = 1049, + [1572] = 1572, + [1573] = 1056, + [1574] = 1069, + [1575] = 1061, + [1576] = 1089, + [1577] = 1091, + [1578] = 1057, + [1579] = 1058, + [1580] = 1094, + [1581] = 1258, + [1582] = 1068, + [1583] = 1404, + [1584] = 1258, + [1585] = 1091, + [1586] = 1089, + [1587] = 1440, + [1588] = 1094, + [1589] = 1062, + [1590] = 1060, + [1591] = 1404, + [1592] = 1592, + [1593] = 1175, + [1594] = 1594, + [1595] = 1229, + [1596] = 1282, + [1597] = 1335, + [1598] = 319, + [1599] = 1077, + [1600] = 1073, + [1601] = 1592, + [1602] = 1404, + [1603] = 1603, + [1604] = 1440, + [1605] = 1605, + [1606] = 1417, + [1607] = 1603, + [1608] = 1481, + [1609] = 1592, + [1610] = 1594, + [1611] = 1592, + [1612] = 1594, + [1613] = 1392, + [1614] = 1075, + [1615] = 1530, + [1616] = 1481, + [1617] = 1534, + [1618] = 1392, + [1619] = 1084, + [1620] = 1417, + [1621] = 1621, + [1622] = 1621, + [1623] = 1621, + [1624] = 1605, + [1625] = 1594, + [1626] = 1626, + [1627] = 1552, + [1628] = 1538, + [1629] = 1178, + [1630] = 1554, + [1631] = 1106, + [1632] = 1100, + [1633] = 1176, + [1634] = 1401, + [1635] = 1560, + [1636] = 1547, + [1637] = 1537, + [1638] = 1543, + [1639] = 1545, + [1640] = 1230, + [1641] = 1561, + [1642] = 1283, + [1643] = 1177, + [1644] = 1644, + [1645] = 1336, + [1646] = 1108, + [1647] = 1647, + [1648] = 1109, + [1649] = 1555, + [1650] = 1556, + [1651] = 1111, + [1652] = 1540, + [1653] = 1647, + [1654] = 378, [1655] = 1655, - [1656] = 1535, - [1657] = 1657, - [1658] = 1658, - [1659] = 1652, - [1660] = 1295, - [1661] = 1296, - [1662] = 1513, - [1663] = 1514, - [1664] = 1404, - [1665] = 1020, - [1666] = 1426, - [1667] = 1456, - [1668] = 1522, - [1669] = 1455, - [1670] = 1470, - [1671] = 1435, - [1672] = 1490, - [1673] = 1386, - [1674] = 1392, - [1675] = 1459, - [1676] = 1395, - [1677] = 1518, - [1678] = 1678, - [1679] = 1496, - [1680] = 1499, - [1681] = 1385, - [1682] = 1412, - [1683] = 1445, - [1684] = 1428, - [1685] = 1430, - [1686] = 1421, - [1687] = 1423, - [1688] = 1448, - [1689] = 1537, - [1690] = 1512, + [1656] = 1541, + [1657] = 1548, + [1658] = 1113, + [1659] = 1530, + [1660] = 1114, + [1661] = 1550, + [1662] = 1662, + [1663] = 1536, + [1664] = 1115, + [1665] = 1557, + [1666] = 1626, + [1667] = 1667, + [1668] = 1644, + [1669] = 1101, + [1670] = 1092, + [1671] = 1093, + [1672] = 1534, + [1673] = 1558, + [1674] = 1399, + [1675] = 1102, + [1676] = 381, + [1677] = 389, + [1678] = 380, + [1679] = 1134, + [1680] = 1135, + [1681] = 1136, + [1682] = 1544, + [1683] = 379, + [1684] = 1137, + [1685] = 1138, + [1686] = 1112, + [1687] = 1687, + [1688] = 1486, + [1689] = 1689, + [1690] = 1521, [1691] = 1691, - [1692] = 1516, - [1693] = 435, - [1694] = 416, - [1695] = 418, - [1696] = 393, - [1697] = 1525, - [1698] = 394, - [1699] = 396, - [1700] = 1466, - [1701] = 1527, - [1702] = 1460, - [1703] = 1531, - [1704] = 1536, - [1705] = 1513, - [1706] = 1462, - [1707] = 1535, - [1708] = 1416, - [1709] = 399, - [1710] = 1522, - [1711] = 1464, - [1712] = 390, - [1713] = 1410, - [1714] = 406, - [1715] = 1518, - [1716] = 412, - [1717] = 1467, - [1718] = 1537, - [1719] = 1512, - [1720] = 1516, - [1721] = 1525, - [1722] = 1527, - [1723] = 1531, - [1724] = 1536, - [1725] = 1513, - [1726] = 1514, - [1727] = 1515, - [1728] = 1520, - [1729] = 1469, - [1730] = 1476, - [1731] = 1479, - [1732] = 1480, - [1733] = 1515, - [1734] = 397, - [1735] = 398, - [1736] = 1529, - [1737] = 400, - [1738] = 1408, - [1739] = 1381, - [1740] = 1478, - [1741] = 407, - [1742] = 408, - [1743] = 409, - [1744] = 411, - [1745] = 415, - [1746] = 392, - [1747] = 170, - [1748] = 180, - [1749] = 417, - [1750] = 169, - [1751] = 1535, - [1752] = 151, - [1753] = 401, - [1754] = 1754, - [1755] = 1518, - [1756] = 154, - [1757] = 413, - [1758] = 1758, - [1759] = 1529, - [1760] = 1520, - [1761] = 1449, - [1762] = 1500, - [1763] = 1415, - [1764] = 1409, - [1765] = 203, - [1766] = 204, - [1767] = 1422, - [1768] = 1473, - [1769] = 1475, - [1770] = 1770, - [1771] = 1501, - [1772] = 1502, - [1773] = 1439, - [1774] = 1472, - [1775] = 1775, - [1776] = 1776, - [1777] = 1429, - [1778] = 1778, - [1779] = 1394, - [1780] = 1780, - [1781] = 1781, - [1782] = 1399, - [1783] = 1414, - [1784] = 1413, - [1785] = 1483, - [1786] = 1786, - [1787] = 1484, - [1788] = 1485, - [1789] = 1789, - [1790] = 1424, - [1791] = 1791, - [1792] = 1436, - [1793] = 1793, - [1794] = 1794, - [1795] = 1425, - [1796] = 1796, - [1797] = 1511, - [1798] = 1786, - [1799] = 1799, - [1800] = 1778, - [1801] = 1801, - [1802] = 1802, - [1803] = 1802, - [1804] = 1405, - [1805] = 1758, - [1806] = 1806, - [1807] = 1418, - [1808] = 1691, - [1809] = 1793, - [1810] = 1801, - [1811] = 1811, - [1812] = 1523, - [1813] = 1526, - [1814] = 1814, - [1815] = 1451, - [1816] = 1387, - [1817] = 1794, - [1818] = 1818, - [1819] = 1438, - [1820] = 1411, - [1821] = 1780, - [1822] = 1461, - [1823] = 1511, - [1824] = 1530, - [1825] = 1786, - [1826] = 1523, - [1827] = 1526, - [1828] = 1789, - [1829] = 1468, - [1830] = 1397, - [1831] = 1400, - [1832] = 1401, - [1833] = 1494, - [1834] = 1382, - [1835] = 1758, - [1836] = 1489, + [1692] = 1555, + [1693] = 1558, + [1694] = 1538, + [1695] = 1540, + [1696] = 1541, + [1697] = 1548, + [1698] = 1552, + [1699] = 1554, + [1700] = 1550, + [1701] = 1557, + [1702] = 1544, + [1703] = 1483, + [1704] = 1405, + [1705] = 1406, + [1706] = 1414, + [1707] = 1707, + [1708] = 1410, + [1709] = 1411, + [1710] = 1412, + [1711] = 1422, + [1712] = 1436, + [1713] = 1713, + [1714] = 1561, + [1715] = 1458, + [1716] = 1441, + [1717] = 1443, + [1718] = 1718, + [1719] = 1444, + [1720] = 1475, + [1721] = 1721, + [1722] = 1446, + [1723] = 1723, + [1724] = 1448, + [1725] = 1547, + [1726] = 1726, + [1727] = 1460, + [1728] = 1494, + [1729] = 1495, + [1730] = 1496, + [1731] = 1497, + [1732] = 1498, + [1733] = 1499, + [1734] = 1503, + [1735] = 1462, + [1736] = 1427, + [1737] = 1428, + [1738] = 1429, + [1739] = 1504, + [1740] = 1463, + [1741] = 1464, + [1742] = 1492, + [1743] = 1493, + [1744] = 1537, + [1745] = 435, + [1746] = 404, + [1747] = 409, + [1748] = 400, + [1749] = 418, + [1750] = 414, + [1751] = 1469, + [1752] = 1556, + [1753] = 1753, + [1754] = 1468, + [1755] = 395, + [1756] = 1560, + [1757] = 1409, + [1758] = 391, + [1759] = 1759, + [1760] = 417, + [1761] = 1536, + [1762] = 393, + [1763] = 1555, + [1764] = 1558, + [1765] = 1538, + [1766] = 1540, + [1767] = 1541, + [1768] = 1548, + [1769] = 1552, + [1770] = 1554, + [1771] = 1550, + [1772] = 1557, + [1773] = 1544, + [1774] = 1407, + [1775] = 1408, + [1776] = 1471, + [1777] = 390, + [1778] = 410, + [1779] = 1561, + [1780] = 397, + [1781] = 1442, + [1782] = 1501, + [1783] = 412, + [1784] = 413, + [1785] = 416, + [1786] = 408, + [1787] = 406, + [1788] = 415, + [1789] = 175, + [1790] = 176, + [1791] = 405, + [1792] = 178, + [1793] = 1473, + [1794] = 1556, + [1795] = 180, + [1796] = 401, + [1797] = 1536, + [1798] = 182, + [1799] = 394, + [1800] = 1480, + [1801] = 1561, + [1802] = 1543, + [1803] = 1420, + [1804] = 1545, + [1805] = 209, + [1806] = 210, + [1807] = 1506, + [1808] = 1808, + [1809] = 1809, + [1810] = 1485, + [1811] = 1509, + [1812] = 1508, + [1813] = 1487, + [1814] = 1511, + [1815] = 1808, + [1816] = 1515, + [1817] = 1817, + [1818] = 1426, + [1819] = 1520, + [1820] = 1820, + [1821] = 1522, + [1822] = 1822, + [1823] = 1823, + [1824] = 1431, + [1825] = 1432, + [1826] = 1435, + [1827] = 1687, + [1828] = 1525, + [1829] = 1510, + [1830] = 1759, + [1831] = 1831, + [1832] = 1512, + [1833] = 1833, + [1834] = 1513, + [1835] = 1753, + [1836] = 1836, [1837] = 1837, - [1838] = 1793, - [1839] = 1806, - [1840] = 1780, - [1841] = 1529, - [1842] = 1786, - [1843] = 1789, - [1844] = 1844, - [1845] = 1481, - [1846] = 1758, - [1847] = 1814, - [1848] = 1848, - [1849] = 1793, - [1850] = 1495, - [1851] = 1402, - [1852] = 1780, - [1853] = 1398, - [1854] = 1789, - [1855] = 1419, - [1856] = 1796, - [1857] = 1758, - [1858] = 1793, - [1859] = 1780, - [1860] = 1789, - [1861] = 1492, - [1862] = 1758, - [1863] = 1793, - [1864] = 1780, - [1865] = 1789, - [1866] = 1758, - [1867] = 1780, - [1868] = 1793, - [1869] = 1789, - [1870] = 1396, - [1871] = 1440, - [1872] = 1872, - [1873] = 1873, - [1874] = 1493, - [1875] = 1450, - [1876] = 1498, - [1877] = 1420, - [1878] = 1878, - [1879] = 1535, - [1880] = 1530, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1881, - [1886] = 1886, - [1887] = 1678, - [1888] = 1888, - [1889] = 1886, - [1890] = 1890, + [1838] = 1823, + [1839] = 1839, + [1840] = 1723, + [1841] = 1707, + [1842] = 1413, + [1843] = 1843, + [1844] = 1718, + [1845] = 1517, + [1846] = 1518, + [1847] = 1437, + [1848] = 1817, + [1849] = 1519, + [1850] = 1516, + [1851] = 1439, + [1852] = 1547, + [1853] = 1537, + [1854] = 1822, + [1855] = 1543, + [1856] = 1545, + [1857] = 1687, + [1858] = 1836, + [1859] = 1817, + [1860] = 1416, + [1861] = 1861, + [1862] = 1419, + [1863] = 1836, + [1864] = 1839, + [1865] = 1556, + [1866] = 1817, + [1867] = 1822, + [1868] = 1868, + [1869] = 1837, + [1870] = 1421, + [1871] = 1836, + [1872] = 1822, + [1873] = 1425, + [1874] = 1839, + [1875] = 1430, + [1876] = 1817, + [1877] = 1687, + [1878] = 1836, + [1879] = 1839, + [1880] = 1817, + [1881] = 1687, + [1882] = 1466, + [1883] = 1836, + [1884] = 1839, + [1885] = 1817, + [1886] = 1687, + [1887] = 1836, + [1888] = 1839, + [1889] = 1527, + [1890] = 1036, [1891] = 1891, [1892] = 1892, - [1893] = 1893, - [1894] = 1892, - [1895] = 1895, - [1896] = 1895, + [1893] = 1470, + [1894] = 1839, + [1895] = 1507, + [1896] = 1472, [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1899, - [1901] = 1754, - [1902] = 1898, - [1903] = 1884, - [1904] = 1883, + [1898] = 1514, + [1899] = 1457, + [1900] = 1900, + [1901] = 1687, + [1902] = 1560, + [1903] = 1536, + [1904] = 1524, [1905] = 1905, - [1906] = 1891, + [1906] = 1906, [1907] = 1907, [1908] = 1908, [1909] = 1905, - [1910] = 1908, - [1911] = 1893, - [1912] = 1892, + [1910] = 1910, + [1911] = 1911, + [1912] = 1912, [1913] = 1913, - [1914] = 1914, + [1914] = 1726, [1915] = 1915, - [1916] = 1781, - [1917] = 1915, + [1916] = 1907, + [1917] = 1917, [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 1920, - [1922] = 1922, - [1923] = 1918, - [1924] = 1922, - [1925] = 1919, - [1926] = 1926, + [1921] = 1921, + [1922] = 1913, + [1923] = 1923, + [1924] = 1918, + [1925] = 1921, + [1926] = 1917, [1927] = 1927, - [1928] = 1928, + [1928] = 1918, [1929] = 1929, - [1930] = 1929, + [1930] = 1930, [1931] = 1931, - [1932] = 1929, - [1933] = 1931, - [1934] = 1929, - [1935] = 1931, - [1936] = 1929, - [1937] = 1929, - [1938] = 1938, - [1939] = 1938, - [1940] = 169, - [1941] = 154, - [1942] = 1024, - [1943] = 1034, - [1944] = 1047, - [1945] = 1035, - [1946] = 1033, - [1947] = 1041, - [1948] = 1948, - [1949] = 1045, - [1950] = 1044, - [1951] = 1044, - [1952] = 1045, - [1953] = 1046, - [1954] = 1039, - [1955] = 1050, - [1956] = 1082, - [1957] = 1043, - [1958] = 1047, - [1959] = 1138, - [1960] = 1041, - [1961] = 1240, - [1962] = 1191, - [1963] = 1060, - [1964] = 1052, - [1965] = 1068, - [1966] = 1966, - [1967] = 1064, - [1968] = 1348, - [1969] = 1969, - [1970] = 1970, - [1971] = 1970, - [1972] = 1308, - [1973] = 1311, - [1974] = 1310, - [1975] = 1975, - [1976] = 1084, - [1977] = 1139, - [1978] = 1351, - [1979] = 1979, - [1980] = 1297, - [1981] = 1296, - [1982] = 203, - [1983] = 1192, - [1984] = 1984, - [1985] = 1241, - [1986] = 1984, - [1987] = 1349, - [1988] = 1352, - [1989] = 413, - [1990] = 1083, - [1991] = 1317, - [1992] = 1295, - [1993] = 204, - [1994] = 401, - [1995] = 1984, - [1996] = 1086, - [1997] = 1315, - [1998] = 1353, - [1999] = 1318, - [2000] = 1319, - [2001] = 1969, - [2002] = 1540, - [2003] = 1320, - [2004] = 1543, - [2005] = 1385, - [2006] = 1485, - [2007] = 1493, - [2008] = 1395, - [2009] = 1422, - [2010] = 1408, - [2011] = 1475, - [2012] = 1483, - [2013] = 2013, - [2014] = 1498, - [2015] = 1440, - [2016] = 1479, - [2017] = 1490, - [2018] = 1484, - [2019] = 2019, - [2020] = 1499, - [2021] = 1450, - [2022] = 1423, - [2023] = 1392, - [2024] = 1381, - [2025] = 1404, - [2026] = 1426, - [2027] = 1386, - [2028] = 1416, - [2029] = 1425, - [2030] = 1969, - [2031] = 1428, - [2032] = 1413, - [2033] = 1546, - [2034] = 1538, - [2035] = 1402, - [2036] = 1430, - [2037] = 1455, - [2038] = 1470, - [2039] = 1476, - [2040] = 1473, - [2041] = 1496, - [2042] = 1421, - [2043] = 1410, - [2044] = 2044, - [2045] = 2045, - [2046] = 180, - [2047] = 151, - [2048] = 2048, - [2049] = 1047, - [2050] = 1041, - [2051] = 1044, - [2052] = 1044, - [2053] = 1045, - [2054] = 1047, - [2055] = 1045, - [2056] = 2056, - [2057] = 2057, - [2058] = 1047, - [2059] = 1045, - [2060] = 1044, - [2061] = 1041, - [2062] = 1041, - [2063] = 1948, - [2064] = 2064, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 2066, + [1932] = 1843, + [1933] = 1927, + [1934] = 1911, + [1935] = 1908, + [1936] = 1936, + [1937] = 1923, + [1938] = 1912, + [1939] = 1936, + [1940] = 1900, + [1941] = 1906, + [1942] = 1942, + [1943] = 1943, + [1944] = 1943, + [1945] = 1945, + [1946] = 1946, + [1947] = 1945, + [1948] = 1946, + [1949] = 1942, + [1950] = 1950, + [1951] = 1951, + [1952] = 1952, + [1953] = 1953, + [1954] = 1954, + [1955] = 1954, + [1956] = 1954, + [1957] = 1953, + [1958] = 1953, + [1959] = 1954, + [1960] = 1954, + [1961] = 1954, + [1962] = 1962, + [1963] = 1962, + [1964] = 178, + [1965] = 1041, + [1966] = 182, + [1967] = 1051, + [1968] = 1968, + [1969] = 1053, + [1970] = 1057, + [1971] = 1056, + [1972] = 1061, + [1973] = 1069, + [1974] = 1049, + [1975] = 1057, + [1976] = 1068, + [1977] = 1062, + [1978] = 1056, + [1979] = 1229, + [1980] = 1335, + [1981] = 1058, + [1982] = 1069, + [1983] = 1060, + [1984] = 1175, + [1985] = 1061, + [1986] = 1282, + [1987] = 1084, + [1988] = 1075, + [1989] = 1989, + [1990] = 1134, + [1991] = 1077, + [1992] = 1073, + [1993] = 1108, + [1994] = 1994, + [1995] = 1995, + [1996] = 1109, + [1997] = 1106, + [1998] = 1998, + [1999] = 1998, + [2000] = 394, + [2001] = 1101, + [2002] = 1135, + [2003] = 1114, + [2004] = 210, + [2005] = 1283, + [2006] = 1336, + [2007] = 401, + [2008] = 2008, + [2009] = 1115, + [2010] = 1137, + [2011] = 1230, + [2012] = 1138, + [2013] = 1111, + [2014] = 1176, + [2015] = 1100, + [2016] = 1572, + [2017] = 1177, + [2018] = 1112, + [2019] = 1178, + [2020] = 1102, + [2021] = 2008, + [2022] = 2022, + [2023] = 1113, + [2024] = 1994, + [2025] = 2008, + [2026] = 1136, + [2027] = 209, + [2028] = 1428, + [2029] = 1496, + [2030] = 1567, + [2031] = 1994, + [2032] = 1466, + [2033] = 1411, + [2034] = 1527, + [2035] = 1468, + [2036] = 1412, + [2037] = 1562, + [2038] = 1437, + [2039] = 1405, + [2040] = 1427, + [2041] = 2041, + [2042] = 1429, + [2043] = 1470, + [2044] = 1472, + [2045] = 1410, + [2046] = 1569, + [2047] = 1406, + [2048] = 1407, + [2049] = 2049, + [2050] = 1408, + [2051] = 1439, + [2052] = 1463, + [2053] = 1464, + [2054] = 1498, + [2055] = 1494, + [2056] = 1495, + [2057] = 1499, + [2058] = 1441, + [2059] = 1442, + [2060] = 1443, + [2061] = 1444, + [2062] = 1501, + [2063] = 1446, + [2064] = 1448, + [2065] = 1492, + [2066] = 1497, + [2067] = 1493, + [2068] = 2068, [2069] = 2069, - [2070] = 2070, + [2070] = 176, [2071] = 2071, - [2072] = 2067, - [2073] = 2065, - [2074] = 2074, - [2075] = 1041, - [2076] = 379, - [2077] = 2077, - [2078] = 2078, - [2079] = 1045, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, + [2072] = 180, + [2073] = 1057, + [2074] = 1069, + [2075] = 1057, + [2076] = 1056, + [2077] = 1069, + [2078] = 1056, + [2079] = 1061, + [2080] = 1069, + [2081] = 1057, + [2082] = 1061, + [2083] = 1056, [2084] = 2084, - [2085] = 2084, + [2085] = 1968, [2086] = 2086, - [2087] = 2087, - [2088] = 2080, - [2089] = 2077, - [2090] = 385, + [2087] = 1061, + [2088] = 2088, + [2089] = 2089, + [2090] = 2090, [2091] = 2091, [2092] = 2092, - [2093] = 384, - [2094] = 1047, + [2093] = 2093, + [2094] = 2089, [2095] = 2095, - [2096] = 387, - [2097] = 2097, - [2098] = 2098, + [2096] = 2095, + [2097] = 2091, + [2098] = 381, [2099] = 2099, [2100] = 2100, [2101] = 2101, - [2102] = 1975, + [2102] = 2102, [2103] = 2103, [2104] = 2104, [2105] = 2105, [2106] = 2106, - [2107] = 2086, - [2108] = 2087, + [2107] = 2107, + [2108] = 2108, [2109] = 2109, - [2110] = 2083, - [2111] = 2092, - [2112] = 2098, + [2110] = 2110, + [2111] = 2111, + [2112] = 380, [2113] = 2113, [2114] = 2114, - [2115] = 2115, - [2116] = 378, - [2117] = 1044, + [2115] = 389, + [2116] = 2116, + [2117] = 2117, [2118] = 2118, - [2119] = 2109, - [2120] = 2120, - [2121] = 2121, + [2119] = 2119, + [2120] = 1069, + [2121] = 2113, [2122] = 2122, [2123] = 2123, [2124] = 2124, - [2125] = 2125, - [2126] = 2126, - [2127] = 2127, + [2125] = 1057, + [2126] = 1056, + [2127] = 1061, [2128] = 2128, - [2129] = 1975, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2133, - [2134] = 2134, + [2129] = 2129, + [2130] = 1995, + [2131] = 379, + [2132] = 378, + [2133] = 2128, + [2134] = 2122, [2135] = 2135, [2136] = 2136, - [2137] = 2137, - [2138] = 2138, - [2139] = 2121, - [2140] = 2140, - [2141] = 2141, - [2142] = 417, + [2137] = 2109, + [2138] = 2102, + [2139] = 2107, + [2140] = 2114, + [2141] = 2117, + [2142] = 2099, [2143] = 2143, - [2144] = 2143, + [2144] = 1995, [2145] = 2145, [2146] = 2146, [2147] = 2147, @@ -6108,433 +6138,433 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2149] = 2149, [2150] = 2150, [2151] = 2151, - [2152] = 1979, + [2152] = 2152, [2153] = 2153, - [2154] = 2143, + [2154] = 2154, [2155] = 2155, [2156] = 2156, [2157] = 2157, - [2158] = 1975, + [2158] = 2158, [2159] = 2159, - [2160] = 2160, + [2160] = 2153, [2161] = 2161, [2162] = 2162, - [2163] = 2127, + [2163] = 2163, [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2148, + [2167] = 2167, [2168] = 2168, [2169] = 2169, [2170] = 2170, - [2171] = 2120, - [2172] = 2172, + [2171] = 2170, + [2172] = 405, [2173] = 2173, [2174] = 2174, - [2175] = 2175, - [2176] = 1052, - [2177] = 1064, + [2175] = 2173, + [2176] = 2022, + [2177] = 2177, [2178] = 2178, [2179] = 2179, - [2180] = 1975, - [2181] = 1979, + [2180] = 2154, + [2181] = 2181, [2182] = 2182, - [2183] = 2183, - [2184] = 2175, - [2185] = 2185, + [2183] = 1995, + [2184] = 2184, + [2185] = 2178, [2186] = 2186, [2187] = 2187, - [2188] = 2174, - [2189] = 2178, - [2190] = 1060, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, [2191] = 2191, [2192] = 2192, [2193] = 2193, [2194] = 2194, - [2195] = 1979, + [2195] = 2170, [2196] = 2196, - [2197] = 2186, - [2198] = 2182, - [2199] = 2185, + [2197] = 2196, + [2198] = 2198, + [2199] = 2199, [2200] = 2200, - [2201] = 2183, - [2202] = 2172, - [2203] = 1068, - [2204] = 2185, + [2201] = 2198, + [2202] = 2202, + [2203] = 2203, + [2204] = 2204, [2205] = 2205, - [2206] = 2205, - [2207] = 2194, - [2208] = 2208, - [2209] = 2209, - [2210] = 2193, - [2211] = 2208, - [2212] = 2209, - [2213] = 2191, + [2206] = 2206, + [2207] = 2207, + [2208] = 1075, + [2209] = 2200, + [2210] = 1084, + [2211] = 2211, + [2212] = 2200, + [2213] = 2203, [2214] = 2214, [2215] = 2215, - [2216] = 2191, - [2217] = 2217, - [2218] = 2217, - [2219] = 2215, - [2220] = 2220, + [2216] = 2198, + [2217] = 1073, + [2218] = 2218, + [2219] = 1995, + [2220] = 1077, [2221] = 2221, [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, + [2223] = 2218, + [2224] = 2022, + [2225] = 2205, + [2226] = 2221, [2227] = 2227, - [2228] = 2220, + [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 2225, + [2231] = 2231, [2232] = 2232, - [2233] = 2233, - [2234] = 2234, - [2235] = 2233, - [2236] = 2236, - [2237] = 2224, - [2238] = 2222, - [2239] = 2234, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, + [2233] = 2204, + [2234] = 2022, + [2235] = 2214, + [2236] = 2199, + [2237] = 2232, + [2238] = 2228, + [2239] = 2239, + [2240] = 2207, + [2241] = 2229, + [2242] = 2211, + [2243] = 2239, [2244] = 2244, - [2245] = 2240, - [2246] = 2232, + [2245] = 2245, + [2246] = 2246, [2247] = 2247, [2248] = 2248, [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 2242, - [2253] = 2230, - [2254] = 2254, - [2255] = 1979, - [2256] = 2223, - [2257] = 2229, + [2252] = 2252, + [2253] = 2253, + [2254] = 2246, + [2255] = 2244, + [2256] = 2248, + [2257] = 2257, [2258] = 2258, [2259] = 2259, [2260] = 2260, [2261] = 2261, [2262] = 2262, [2263] = 2263, - [2264] = 2221, - [2265] = 2249, - [2266] = 2260, - [2267] = 2251, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 2250, - [2272] = 2227, - [2273] = 2241, - [2274] = 2274, - [2275] = 2247, + [2271] = 2257, + [2272] = 2272, + [2273] = 2269, + [2274] = 2267, + [2275] = 2275, [2276] = 2276, [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2281, + [2278] = 2249, + [2279] = 2270, + [2280] = 2264, + [2281] = 2245, [2282] = 2282, - [2283] = 2283, - [2284] = 2284, + [2283] = 2272, + [2284] = 2277, [2285] = 2285, [2286] = 2286, - [2287] = 2287, + [2287] = 2275, [2288] = 2288, - [2289] = 2289, - [2290] = 2044, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, + [2289] = 2288, + [2290] = 2290, + [2291] = 2276, + [2292] = 2259, + [2293] = 2265, [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2280, - [2298] = 2283, - [2299] = 2299, + [2295] = 2022, + [2296] = 2282, + [2297] = 2297, + [2298] = 2250, + [2299] = 2266, [2300] = 2300, [2301] = 2301, - [2302] = 2293, - [2303] = 2296, + [2302] = 2302, + [2303] = 2303, [2304] = 2304, [2305] = 2305, [2306] = 2306, [2307] = 2307, - [2308] = 2304, + [2308] = 2308, [2309] = 2309, - [2310] = 2285, - [2311] = 2286, + [2310] = 2310, + [2311] = 2311, [2312] = 2312, - [2313] = 2313, - [2314] = 2309, - [2315] = 2312, + [2313] = 2300, + [2314] = 2314, + [2315] = 2303, [2316] = 2316, [2317] = 2317, - [2318] = 2278, - [2319] = 2279, - [2320] = 2281, - [2321] = 2282, - [2322] = 2289, - [2323] = 2292, - [2324] = 2294, - [2325] = 2295, - [2326] = 2300, - [2327] = 2301, - [2328] = 2299, - [2329] = 2301, - [2330] = 2276, - [2331] = 2331, - [2332] = 2313, - [2333] = 2333, + [2318] = 2318, + [2319] = 2319, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2305, + [2330] = 2307, + [2331] = 2310, + [2332] = 2328, + [2333] = 2308, [2334] = 2334, - [2335] = 2335, - [2336] = 2336, - [2337] = 2337, - [2338] = 2338, - [2339] = 2339, - [2340] = 2336, - [2341] = 2064, + [2335] = 2317, + [2336] = 2318, + [2337] = 2311, + [2338] = 2319, + [2339] = 2320, + [2340] = 2312, + [2341] = 2341, [2342] = 2342, - [2343] = 2343, - [2344] = 2337, + [2343] = 2310, + [2344] = 2302, [2345] = 2345, [2346] = 2346, - [2347] = 2056, + [2347] = 2347, [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2356, - [2357] = 2357, + [2349] = 2323, + [2350] = 2314, + [2351] = 2346, + [2352] = 2316, + [2353] = 2326, + [2354] = 2324, + [2355] = 2327, + [2356] = 2069, + [2357] = 2304, [2358] = 2358, - [2359] = 2356, - [2360] = 2357, + [2359] = 2359, + [2360] = 2360, [2361] = 2361, - [2362] = 2362, + [2362] = 2084, [2363] = 2363, [2364] = 2364, [2365] = 2365, - [2366] = 2361, - [2367] = 2362, + [2366] = 2366, + [2367] = 2367, [2368] = 2368, [2369] = 2369, [2370] = 2370, - [2371] = 2371, + [2371] = 2366, [2372] = 2372, [2373] = 2373, - [2374] = 2353, - [2375] = 2346, - [2376] = 2045, - [2377] = 2342, - [2378] = 2343, - [2379] = 2368, - [2380] = 2369, - [2381] = 2348, - [2382] = 2382, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 2370, + [2382] = 2366, [2383] = 2383, - [2384] = 2348, - [2385] = 2342, - [2386] = 2343, - [2387] = 2348, - [2388] = 2349, + [2384] = 2384, + [2385] = 2374, + [2386] = 2380, + [2387] = 2387, + [2388] = 2374, [2389] = 2389, - [2390] = 2334, - [2391] = 2365, - [2392] = 2350, + [2390] = 2389, + [2391] = 2391, + [2392] = 2359, [2393] = 2393, - [2394] = 2370, - [2395] = 2371, - [2396] = 2372, + [2394] = 2394, + [2395] = 2068, + [2396] = 2396, [2397] = 2373, - [2398] = 2342, - [2399] = 2343, - [2400] = 180, - [2401] = 169, - [2402] = 151, - [2403] = 154, - [2404] = 2364, - [2405] = 2354, - [2406] = 2338, + [2398] = 2398, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 2402, + [2403] = 2403, + [2404] = 2363, + [2405] = 2405, + [2406] = 176, [2407] = 2407, - [2408] = 2408, - [2409] = 2365, - [2410] = 2355, + [2408] = 2393, + [2409] = 2409, + [2410] = 2358, [2411] = 2411, - [2412] = 2358, - [2413] = 2413, - [2414] = 2408, - [2415] = 2382, - [2416] = 2351, - [2417] = 2417, - [2418] = 2408, - [2419] = 2352, - [2420] = 2339, - [2421] = 2335, - [2422] = 2389, + [2412] = 2412, + [2413] = 2409, + [2414] = 178, + [2415] = 180, + [2416] = 2416, + [2417] = 2378, + [2418] = 2399, + [2419] = 2403, + [2420] = 2383, + [2421] = 182, + [2422] = 2411, [2423] = 2423, - [2424] = 2424, - [2425] = 2424, - [2426] = 2417, - [2427] = 2411, - [2428] = 2407, - [2429] = 2429, - [2430] = 2430, + [2424] = 2387, + [2425] = 2425, + [2426] = 2369, + [2427] = 2372, + [2428] = 2379, + [2429] = 2375, + [2430] = 2402, [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2434, - [2435] = 2069, - [2436] = 2436, - [2437] = 2070, + [2432] = 2370, + [2433] = 2366, + [2434] = 2375, + [2435] = 2374, + [2436] = 2364, + [2437] = 2365, [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2441, + [2439] = 2416, + [2440] = 2400, + [2441] = 2423, [2442] = 2442, - [2443] = 2439, - [2444] = 2436, - [2445] = 2445, - [2446] = 2446, + [2443] = 2396, + [2444] = 2373, + [2445] = 2407, + [2446] = 2391, [2447] = 2438, - [2448] = 2431, - [2449] = 2449, - [2450] = 2450, - [2451] = 2451, - [2452] = 2431, - [2453] = 2453, - [2454] = 2438, - [2455] = 2455, - [2456] = 2446, + [2448] = 2405, + [2449] = 2401, + [2450] = 2367, + [2451] = 2368, + [2452] = 2370, + [2453] = 2088, + [2454] = 2425, + [2455] = 2376, + [2456] = 2456, [2457] = 2457, [2458] = 2458, [2459] = 2459, [2460] = 2460, - [2461] = 1293, + [2461] = 2461, [2462] = 2462, [2463] = 2463, - [2464] = 2464, - [2465] = 2449, - [2466] = 2455, + [2464] = 1229, + [2465] = 2465, + [2466] = 2466, [2467] = 2467, [2468] = 2468, [2469] = 2469, [2470] = 2470, - [2471] = 2467, - [2472] = 2472, - [2473] = 2473, + [2471] = 2471, + [2472] = 2457, + [2473] = 2090, [2474] = 2474, [2475] = 2475, [2476] = 2476, - [2477] = 2477, - [2478] = 2433, - [2479] = 2479, + [2477] = 2468, + [2478] = 2459, + [2479] = 2471, [2480] = 2480, - [2481] = 2439, - [2482] = 2482, + [2481] = 1394, + [2482] = 1282, [2483] = 2483, - [2484] = 2453, + [2484] = 2484, [2485] = 2485, - [2486] = 2486, - [2487] = 2442, + [2486] = 2476, + [2487] = 1335, [2488] = 2488, [2489] = 2489, [2490] = 2490, - [2491] = 2473, - [2492] = 2492, - [2493] = 1299, - [2494] = 2494, - [2495] = 2436, - [2496] = 2488, - [2497] = 1020, - [2498] = 2451, - [2499] = 2438, + [2491] = 2466, + [2492] = 2467, + [2493] = 2458, + [2494] = 2463, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, [2500] = 2500, - [2501] = 2457, - [2502] = 2449, - [2503] = 2455, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, [2504] = 2504, [2505] = 2505, - [2506] = 2451, + [2506] = 1087, [2507] = 2507, - [2508] = 2469, + [2508] = 2508, [2509] = 2509, [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2440, - [2514] = 1082, - [2515] = 1341, - [2516] = 2479, - [2517] = 2459, - [2518] = 1138, - [2519] = 1191, - [2520] = 1240, + [2511] = 1036, + [2512] = 2500, + [2513] = 2093, + [2514] = 2514, + [2515] = 2475, + [2516] = 2516, + [2517] = 2517, + [2518] = 2468, + [2519] = 2458, + [2520] = 2520, [2521] = 2521, - [2522] = 2488, - [2523] = 2480, - [2524] = 2524, - [2525] = 2451, - [2526] = 1350, - [2527] = 2483, - [2528] = 2486, - [2529] = 2529, + [2522] = 2522, + [2523] = 2523, + [2524] = 2504, + [2525] = 2514, + [2526] = 2526, + [2527] = 2527, + [2528] = 2470, + [2529] = 2466, [2530] = 2530, - [2531] = 2531, - [2532] = 2482, - [2533] = 2470, - [2534] = 2524, - [2535] = 2535, - [2536] = 2536, + [2531] = 2503, + [2532] = 2532, + [2533] = 2532, + [2534] = 1402, + [2535] = 2467, + [2536] = 2520, [2537] = 2537, - [2538] = 2538, - [2539] = 160, - [2540] = 2540, - [2541] = 2541, - [2542] = 2103, - [2543] = 2543, + [2538] = 2495, + [2539] = 2539, + [2540] = 1175, + [2541] = 2522, + [2542] = 2495, + [2543] = 2497, [2544] = 2544, [2545] = 2545, - [2546] = 2104, + [2546] = 2546, [2547] = 2547, - [2548] = 2548, - [2549] = 2549, - [2550] = 2105, - [2551] = 2551, + [2548] = 2459, + [2549] = 2470, + [2550] = 2462, + [2551] = 2463, [2552] = 2552, [2553] = 2553, - [2554] = 2554, + [2554] = 2468, [2555] = 2555, - [2556] = 2556, - [2557] = 2557, + [2556] = 2552, + [2557] = 2523, [2558] = 2558, - [2559] = 2559, - [2560] = 2560, - [2561] = 2561, - [2562] = 2562, - [2563] = 2563, + [2559] = 2458, + [2560] = 2474, + [2561] = 1088, + [2562] = 2553, + [2563] = 2488, [2564] = 2564, [2565] = 2565, [2566] = 2566, [2567] = 2567, - [2568] = 2560, + [2568] = 2568, [2569] = 2569, - [2570] = 2562, + [2570] = 2570, [2571] = 2571, - [2572] = 2559, + [2572] = 2572, [2573] = 2573, [2574] = 2574, [2575] = 2575, - [2576] = 2553, + [2576] = 166, [2577] = 2577, - [2578] = 2569, + [2578] = 2578, [2579] = 2579, [2580] = 2580, [2581] = 2581, @@ -6542,1122 +6572,1166 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2583] = 2583, [2584] = 2584, [2585] = 2585, - [2586] = 2541, - [2587] = 2549, + [2586] = 2586, + [2587] = 2587, [2588] = 2588, [2589] = 2589, - [2590] = 2573, + [2590] = 2590, [2591] = 2591, [2592] = 2592, [2593] = 2593, [2594] = 2594, [2595] = 2595, - [2596] = 2566, + [2596] = 2596, [2597] = 2597, - [2598] = 2591, + [2598] = 2598, [2599] = 2599, - [2600] = 2567, - [2601] = 2563, - [2602] = 2561, - [2603] = 2603, - [2604] = 2562, - [2605] = 2573, - [2606] = 2581, - [2607] = 2589, - [2608] = 2608, - [2609] = 2608, - [2610] = 2535, - [2611] = 2558, - [2612] = 2612, + [2600] = 2600, + [2601] = 2601, + [2602] = 2602, + [2603] = 2568, + [2604] = 2604, + [2605] = 2124, + [2606] = 2108, + [2607] = 2110, + [2608] = 2136, + [2609] = 2582, + [2610] = 2587, + [2611] = 2594, + [2612] = 2598, [2613] = 2613, [2614] = 2614, [2615] = 2615, - [2616] = 2583, + [2616] = 2616, [2617] = 2617, - [2618] = 2544, + [2618] = 2600, [2619] = 2619, - [2620] = 2561, - [2621] = 2074, - [2622] = 2566, - [2623] = 2567, + [2620] = 2620, + [2621] = 2571, + [2622] = 2573, + [2623] = 2588, [2624] = 2624, - [2625] = 2558, - [2626] = 2594, - [2627] = 2543, - [2628] = 2628, - [2629] = 2629, + [2625] = 2625, + [2626] = 2614, + [2627] = 2599, + [2628] = 2575, + [2629] = 2581, [2630] = 2630, [2631] = 2631, - [2632] = 2631, + [2632] = 2632, [2633] = 2633, - [2634] = 2552, - [2635] = 2537, - [2636] = 2636, - [2637] = 2637, - [2638] = 2638, + [2634] = 2634, + [2635] = 2565, + [2636] = 2578, + [2637] = 2625, + [2638] = 2579, [2639] = 2639, - [2640] = 2543, - [2641] = 2581, - [2642] = 2642, - [2643] = 2643, - [2644] = 2095, + [2640] = 2640, + [2641] = 2641, + [2642] = 2596, + [2643] = 2597, + [2644] = 2632, [2645] = 2645, - [2646] = 2579, - [2647] = 2580, - [2648] = 2541, - [2649] = 2549, - [2650] = 2593, - [2651] = 2594, - [2652] = 2595, - [2653] = 2597, - [2654] = 2612, - [2655] = 2562, - [2656] = 2573, - [2657] = 2581, - [2658] = 2589, - [2659] = 2608, - [2660] = 2558, - [2661] = 2612, - [2662] = 2583, - [2663] = 2617, - [2664] = 2561, - [2665] = 2567, - [2666] = 2535, - [2667] = 2617, - [2668] = 2595, - [2669] = 2669, - [2670] = 2670, - [2671] = 2597, - [2672] = 2097, - [2673] = 2537, - [2674] = 2593, - [2675] = 2099, - [2676] = 2676, - [2677] = 2595, - [2678] = 2597, - [2679] = 2679, - [2680] = 2573, - [2681] = 2558, - [2682] = 2612, - [2683] = 2583, - [2684] = 2617, - [2685] = 2561, - [2686] = 2567, - [2687] = 2544, - [2688] = 2631, - [2689] = 2595, - [2690] = 2690, - [2691] = 2558, - [2692] = 2561, - [2693] = 2567, - [2694] = 2589, - [2695] = 2695, - [2696] = 2614, - [2697] = 2697, - [2698] = 2698, - [2699] = 2537, - [2700] = 2078, - [2701] = 2701, - [2702] = 2561, - [2703] = 2567, - [2704] = 2106, + [2646] = 2646, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2646, + [2651] = 2651, + [2652] = 2652, + [2653] = 2572, + [2654] = 2654, + [2655] = 2655, + [2656] = 2569, + [2657] = 2641, + [2658] = 2658, + [2659] = 2100, + [2660] = 2143, + [2661] = 2104, + [2662] = 2105, + [2663] = 2624, + [2664] = 2634, + [2665] = 2565, + [2666] = 2101, + [2667] = 2103, + [2668] = 2668, + [2669] = 2106, + [2670] = 2111, + [2671] = 2566, + [2672] = 2567, + [2673] = 2570, + [2674] = 2647, + [2675] = 2586, + [2676] = 2593, + [2677] = 2658, + [2678] = 2678, + [2679] = 2678, + [2680] = 2680, + [2681] = 2681, + [2682] = 2604, + [2683] = 2683, + [2684] = 2588, + [2685] = 2589, + [2686] = 2590, + [2687] = 2592, + [2688] = 2591, + [2689] = 2592, + [2690] = 2602, + [2691] = 2599, + [2692] = 2601, + [2693] = 2602, + [2694] = 2568, + [2695] = 2604, + [2696] = 2696, + [2697] = 2582, + [2698] = 2587, + [2699] = 2594, + [2700] = 2598, + [2701] = 2613, + [2702] = 2616, + [2703] = 2617, + [2704] = 2600, [2705] = 2705, - [2706] = 2113, - [2707] = 2563, - [2708] = 2553, - [2709] = 2709, - [2710] = 2701, - [2711] = 2582, - [2712] = 2535, - [2713] = 2713, - [2714] = 2082, - [2715] = 2612, - [2716] = 2636, - [2717] = 2717, - [2718] = 2698, - [2719] = 2613, - [2720] = 2574, - [2721] = 2721, - [2722] = 2705, - [2723] = 2575, - [2724] = 2717, - [2725] = 2639, - [2726] = 2636, - [2727] = 2639, - [2728] = 2728, - [2729] = 2729, - [2730] = 2614, - [2731] = 2731, - [2732] = 2732, - [2733] = 2597, - [2734] = 2669, - [2735] = 2735, - [2736] = 2697, - [2737] = 158, - [2738] = 2555, - [2739] = 2551, - [2740] = 2740, - [2741] = 2584, - [2742] = 2637, - [2743] = 2645, - [2744] = 2731, - [2745] = 2745, - [2746] = 2732, - [2747] = 2577, - [2748] = 2748, - [2749] = 2713, - [2750] = 2750, - [2751] = 2638, - [2752] = 2643, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 2557, - [2757] = 2628, - [2758] = 2758, - [2759] = 2553, - [2760] = 2579, - [2761] = 2580, - [2762] = 2713, + [2706] = 2620, + [2707] = 2707, + [2708] = 2634, + [2709] = 2573, + [2710] = 2648, + [2711] = 2631, + [2712] = 2712, + [2713] = 167, + [2714] = 2579, + [2715] = 2715, + [2716] = 2648, + [2717] = 2680, + [2718] = 2718, + [2719] = 2651, + [2720] = 2681, + [2721] = 2586, + [2722] = 2593, + [2723] = 2680, + [2724] = 2681, + [2725] = 2588, + [2726] = 2589, + [2727] = 2590, + [2728] = 2591, + [2729] = 2601, + [2730] = 2602, + [2731] = 2568, + [2732] = 2604, + [2733] = 2582, + [2734] = 2587, + [2735] = 2594, + [2736] = 2736, + [2737] = 2616, + [2738] = 2617, + [2739] = 2620, + [2740] = 2573, + [2741] = 2631, + [2742] = 2742, + [2743] = 2648, + [2744] = 2744, + [2745] = 2654, + [2746] = 2590, + [2747] = 2591, + [2748] = 2602, + [2749] = 2587, + [2750] = 2594, + [2751] = 2751, + [2752] = 2616, + [2753] = 2617, + [2754] = 2620, + [2755] = 2573, + [2756] = 2655, + [2757] = 2757, + [2758] = 2590, + [2759] = 2759, + [2760] = 2587, + [2761] = 2620, + [2762] = 2573, [2763] = 2763, - [2764] = 2764, - [2765] = 2583, - [2766] = 2729, - [2767] = 2585, - [2768] = 2591, - [2769] = 2101, - [2770] = 2553, - [2771] = 2750, - [2772] = 2772, - [2773] = 2713, - [2774] = 2565, - [2775] = 2556, - [2776] = 2670, - [2777] = 2753, - [2778] = 2633, - [2779] = 2617, - [2780] = 2593, - [2781] = 2594, - [2782] = 2676, - [2783] = 2758, - [2784] = 2595, - [2785] = 2748, - [2786] = 2608, - [2787] = 2755, - [2788] = 2613, - [2789] = 2789, + [2764] = 2613, + [2765] = 2615, + [2766] = 2766, + [2767] = 2616, + [2768] = 2620, + [2769] = 2573, + [2770] = 2631, + [2771] = 2591, + [2772] = 2595, + [2773] = 2773, + [2774] = 2774, + [2775] = 2707, + [2776] = 2776, + [2777] = 2774, + [2778] = 2778, + [2779] = 2778, + [2780] = 2780, + [2781] = 2781, + [2782] = 2645, + [2783] = 2620, + [2784] = 2784, + [2785] = 2651, + [2786] = 2786, + [2787] = 2787, + [2788] = 2788, + [2789] = 2683, [2790] = 2790, - [2791] = 2791, - [2792] = 2792, - [2793] = 2165, - [2794] = 2794, - [2795] = 2795, - [2796] = 2796, - [2797] = 2797, + [2791] = 2639, + [2792] = 2751, + [2793] = 2668, + [2794] = 2595, + [2795] = 2696, + [2796] = 2705, + [2797] = 2601, [2798] = 2798, - [2799] = 2799, + [2799] = 2633, [2800] = 2800, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 2804, + [2801] = 2744, + [2802] = 2589, + [2803] = 2595, + [2804] = 2778, [2805] = 2805, [2806] = 2806, - [2807] = 2807, - [2808] = 2808, - [2809] = 2799, - [2810] = 2794, - [2811] = 2811, + [2807] = 2595, + [2808] = 2590, + [2809] = 2778, + [2810] = 2781, + [2811] = 2715, [2812] = 2812, - [2813] = 2813, + [2813] = 2736, [2814] = 2814, - [2815] = 2815, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, + [2815] = 2786, + [2816] = 2640, + [2817] = 2806, + [2818] = 2619, [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [2822] = 2822, + [2820] = 2617, + [2821] = 2788, + [2822] = 2571, [2823] = 2823, [2824] = 2824, [2825] = 2825, [2826] = 2826, [2827] = 2827, [2828] = 2828, - [2829] = 2829, + [2829] = 2193, [2830] = 2830, - [2831] = 2800, + [2831] = 2831, [2832] = 2832, [2833] = 2833, [2834] = 2834, - [2835] = 2808, + [2835] = 2835, [2836] = 2836, - [2837] = 2813, + [2837] = 2837, [2838] = 2838, [2839] = 2839, [2840] = 2840, [2841] = 2841, - [2842] = 2842, - [2843] = 2825, - [2844] = 2844, + [2842] = 2149, + [2843] = 2843, + [2844] = 2150, [2845] = 2845, - [2846] = 2846, + [2846] = 2831, [2847] = 2847, [2848] = 2848, [2849] = 2849, [2850] = 2850, [2851] = 2851, - [2852] = 2801, + [2852] = 2852, [2853] = 2853, [2854] = 2854, [2855] = 2855, - [2856] = 2791, - [2857] = 2795, - [2858] = 2803, - [2859] = 2859, + [2856] = 2826, + [2857] = 2857, + [2858] = 2858, + [2859] = 405, [2860] = 2860, - [2861] = 2816, - [2862] = 2820, + [2861] = 2861, + [2862] = 2862, [2863] = 2863, [2864] = 2864, - [2865] = 2832, - [2866] = 2866, - [2867] = 2863, + [2865] = 2830, + [2866] = 2151, + [2867] = 2867, [2868] = 2868, [2869] = 2869, [2870] = 2870, - [2871] = 2871, - [2872] = 2131, - [2873] = 2137, - [2874] = 2792, + [2871] = 2832, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, [2875] = 2875, [2876] = 2876, [2877] = 2877, [2878] = 2878, [2879] = 2879, - [2880] = 2812, - [2881] = 2881, + [2880] = 2880, + [2881] = 2873, [2882] = 2882, - [2883] = 2838, - [2884] = 2136, - [2885] = 2130, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, [2886] = 2886, - [2887] = 2882, + [2887] = 2887, [2888] = 2888, [2889] = 2889, [2890] = 2890, [2891] = 2891, - [2892] = 2845, + [2892] = 2892, [2893] = 2893, [2894] = 2894, - [2895] = 2122, - [2896] = 2846, - [2897] = 2897, + [2895] = 2895, + [2896] = 2896, + [2897] = 2845, [2898] = 2898, - [2899] = 2125, + [2899] = 2899, [2900] = 2900, - [2901] = 2157, + [2901] = 2901, [2902] = 2902, - [2903] = 2124, + [2903] = 2903, [2904] = 2904, - [2905] = 2132, - [2906] = 2847, - [2907] = 2146, - [2908] = 2164, - [2909] = 2888, - [2910] = 2889, - [2911] = 2133, + [2905] = 2905, + [2906] = 2906, + [2907] = 2907, + [2908] = 2858, + [2909] = 2909, + [2910] = 2872, + [2911] = 2911, [2912] = 2912, - [2913] = 2913, + [2913] = 2827, [2914] = 2914, - [2915] = 2915, - [2916] = 2869, - [2917] = 2917, + [2915] = 2860, + [2916] = 2168, + [2917] = 2194, [2918] = 2918, - [2919] = 2919, - [2920] = 2870, + [2919] = 2867, + [2920] = 2874, [2921] = 2921, - [2922] = 2798, - [2923] = 2864, - [2924] = 2849, - [2925] = 2859, - [2926] = 2866, - [2927] = 2927, - [2928] = 2928, - [2929] = 2891, - [2930] = 2814, - [2931] = 2931, - [2932] = 2932, - [2933] = 2804, + [2922] = 2165, + [2923] = 2923, + [2924] = 2901, + [2925] = 2925, + [2926] = 2926, + [2927] = 2161, + [2928] = 2833, + [2929] = 2870, + [2930] = 2877, + [2931] = 2184, + [2932] = 2177, + [2933] = 2181, [2934] = 2934, [2935] = 2935, - [2936] = 2126, + [2936] = 2936, [2937] = 2937, - [2938] = 2893, - [2939] = 417, - [2940] = 2940, - [2941] = 2850, + [2938] = 2938, + [2939] = 2939, + [2940] = 2163, + [2941] = 2941, [2942] = 2942, - [2943] = 2871, - [2944] = 2881, - [2945] = 2894, - [2946] = 2946, + [2943] = 2943, + [2944] = 2934, + [2945] = 2945, + [2946] = 2187, [2947] = 2947, - [2948] = 2948, + [2948] = 2868, [2949] = 2949, - [2950] = 2851, + [2950] = 2950, [2951] = 2951, - [2952] = 2806, - [2953] = 2799, - [2954] = 2954, - [2955] = 2897, - [2956] = 2956, - [2957] = 2957, - [2958] = 2898, - [2959] = 2845, - [2960] = 2846, - [2961] = 2961, - [2962] = 2854, - [2963] = 2963, - [2964] = 2855, + [2952] = 2825, + [2953] = 2162, + [2954] = 2174, + [2955] = 2893, + [2956] = 2898, + [2957] = 2902, + [2958] = 2905, + [2959] = 2949, + [2960] = 2945, + [2961] = 2145, + [2962] = 2935, + [2963] = 2848, + [2964] = 2964, [2965] = 2965, - [2966] = 2838, + [2966] = 2966, [2967] = 2967, - [2968] = 2882, - [2969] = 2888, - [2970] = 2889, - [2971] = 2805, - [2972] = 2875, - [2973] = 2914, - [2974] = 2915, + [2968] = 2192, + [2969] = 2155, + [2970] = 2970, + [2971] = 2971, + [2972] = 2876, + [2973] = 2855, + [2974] = 2156, [2975] = 2975, - [2976] = 2918, - [2977] = 2931, - [2978] = 2978, - [2979] = 2979, - [2980] = 2931, - [2981] = 2947, - [2982] = 2900, - [2983] = 2983, - [2984] = 2806, - [2985] = 2818, - [2986] = 2876, - [2987] = 2987, - [2988] = 2819, - [2989] = 2845, - [2990] = 2846, + [2976] = 2971, + [2977] = 2158, + [2978] = 2851, + [2979] = 2950, + [2980] = 2980, + [2981] = 2981, + [2982] = 2982, + [2983] = 2975, + [2984] = 2984, + [2985] = 2985, + [2986] = 2179, + [2987] = 2848, + [2988] = 2988, + [2989] = 2851, + [2990] = 2990, [2991] = 2991, - [2992] = 2919, - [2993] = 2838, - [2994] = 2994, - [2995] = 2931, - [2996] = 2996, - [2997] = 2997, - [2998] = 2135, - [2999] = 2140, - [3000] = 3000, - [3001] = 2155, - [3002] = 2168, - [3003] = 2169, - [3004] = 2123, - [3005] = 3005, - [3006] = 2902, - [3007] = 2854, + [2992] = 2885, + [2993] = 2886, + [2994] = 2895, + [2995] = 2995, + [2996] = 2896, + [2997] = 2921, + [2998] = 2901, + [2999] = 2925, + [3000] = 2926, + [3001] = 2949, + [3002] = 2950, + [3003] = 3003, + [3004] = 2971, + [3005] = 2167, + [3006] = 2164, + [3007] = 2988, [3008] = 3008, [3009] = 3009, - [3010] = 2821, - [3011] = 3011, - [3012] = 3012, - [3013] = 3013, + [3010] = 2975, + [3011] = 2159, + [3012] = 2857, + [3013] = 2937, [3014] = 3014, - [3015] = 2817, - [3016] = 2128, - [3017] = 2134, - [3018] = 2855, - [3019] = 3019, + [3015] = 3015, + [3016] = 2885, + [3017] = 2886, + [3018] = 2918, + [3019] = 2921, [3020] = 3020, - [3021] = 3021, - [3022] = 2979, - [3023] = 3021, - [3024] = 3024, - [3025] = 2853, - [3026] = 3024, + [3021] = 2925, + [3022] = 2186, + [3023] = 2971, + [3024] = 3020, + [3025] = 2884, + [3026] = 3026, [3027] = 3027, - [3028] = 2824, - [3029] = 170, - [3030] = 2921, - [3031] = 2141, + [3028] = 3028, + [3029] = 2926, + [3030] = 2981, + [3031] = 3031, [3032] = 3032, - [3033] = 3032, + [3033] = 2869, [3034] = 3034, [3035] = 3035, - [3036] = 2826, - [3037] = 2145, - [3038] = 3038, - [3039] = 3039, - [3040] = 2979, - [3041] = 2834, - [3042] = 2160, - [3043] = 2138, - [3044] = 2153, - [3045] = 2147, - [3046] = 2149, - [3047] = 2997, - [3048] = 2827, + [3036] = 2834, + [3037] = 3037, + [3038] = 2885, + [3039] = 2886, + [3040] = 2188, + [3041] = 3041, + [3042] = 2887, + [3043] = 2970, + [3044] = 3044, + [3045] = 2964, + [3046] = 2888, + [3047] = 2970, + [3048] = 2965, [3049] = 3049, - [3050] = 2150, - [3051] = 2151, + [3050] = 3050, + [3051] = 3051, [3052] = 3052, [3053] = 3053, - [3054] = 3054, - [3055] = 2881, - [3056] = 2828, - [3057] = 3057, - [3058] = 2156, + [3054] = 2889, + [3055] = 3055, + [3056] = 2891, + [3057] = 2938, + [3058] = 2190, [3059] = 3059, [3060] = 3060, - [3061] = 2790, - [3062] = 3062, - [3063] = 2947, + [3061] = 2191, + [3062] = 2146, + [3063] = 2148, [3064] = 3064, - [3065] = 2914, - [3066] = 2915, - [3067] = 2162, - [3068] = 2931, - [3069] = 3069, - [3070] = 2878, - [3071] = 2830, - [3072] = 2166, - [3073] = 2170, + [3065] = 3065, + [3066] = 2152, + [3067] = 2157, + [3068] = 2981, + [3069] = 2895, + [3070] = 2896, + [3071] = 3071, + [3072] = 3072, + [3073] = 2971, [3074] = 3074, - [3075] = 3075, + [3075] = 2906, [3076] = 3076, - [3077] = 3077, + [3077] = 2975, [3078] = 3078, [3079] = 3079, [3080] = 3080, [3081] = 3081, - [3082] = 2917, - [3083] = 2975, - [3084] = 3011, - [3085] = 2961, - [3086] = 2789, - [3087] = 2840, - [3088] = 3000, - [3089] = 3049, - [3090] = 3064, + [3082] = 2914, + [3083] = 3083, + [3084] = 3084, + [3085] = 2189, + [3086] = 3086, + [3087] = 2899, + [3088] = 2900, + [3089] = 3089, + [3090] = 2837, [3091] = 3091, - [3092] = 2940, - [3093] = 2912, - [3094] = 2833, - [3095] = 3095, + [3092] = 3092, + [3093] = 2861, + [3094] = 3034, + [3095] = 2862, [3096] = 3096, - [3097] = 2947, - [3098] = 3052, - [3099] = 3099, - [3100] = 3100, + [3097] = 3049, + [3098] = 2839, + [3099] = 3032, + [3100] = 3050, [3101] = 3101, [3102] = 3102, - [3103] = 3103, - [3104] = 3104, - [3105] = 3105, + [3103] = 2911, + [3104] = 3083, + [3105] = 2841, [3106] = 3106, - [3107] = 3107, + [3107] = 2147, [3108] = 3108, [3109] = 3109, - [3110] = 3110, - [3111] = 3111, - [3112] = 3112, + [3110] = 2863, + [3111] = 2903, + [3112] = 175, [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 3117, - [3118] = 3118, - [3119] = 1476, - [3120] = 3120, - [3121] = 1479, + [3114] = 2985, + [3115] = 3014, + [3116] = 2909, + [3117] = 2921, + [3118] = 3052, + [3119] = 3106, + [3120] = 2951, + [3121] = 3071, [3122] = 3122, - [3123] = 3117, - [3124] = 3124, - [3125] = 3125, + [3123] = 3084, + [3124] = 2923, + [3125] = 3076, [3126] = 3126, - [3127] = 3101, - [3128] = 3128, - [3129] = 3129, + [3127] = 3127, + [3128] = 2878, + [3129] = 2904, [3130] = 3130, - [3131] = 3131, - [3132] = 3100, + [3131] = 2182, + [3132] = 3132, [3133] = 3133, [3134] = 3134, [3135] = 3135, [3136] = 3136, [3137] = 3137, [3138] = 3138, - [3139] = 3139, + [3139] = 3135, [3140] = 3140, - [3141] = 3134, - [3142] = 3142, + [3141] = 3141, + [3142] = 3141, [3143] = 3143, [3144] = 3144, [3145] = 3145, [3146] = 3146, - [3147] = 1416, - [3148] = 3118, + [3147] = 3147, + [3148] = 3148, [3149] = 3149, - [3150] = 3130, - [3151] = 3118, + [3150] = 3150, + [3151] = 3148, [3152] = 3152, [3153] = 3153, - [3154] = 3114, + [3154] = 3154, [3155] = 3155, [3156] = 3156, - [3157] = 3149, + [3157] = 3157, [3158] = 3158, - [3159] = 3158, - [3160] = 3112, - [3161] = 3135, - [3162] = 3162, - [3163] = 3101, - [3164] = 3105, - [3165] = 3103, - [3166] = 3105, + [3159] = 3159, + [3160] = 3160, + [3161] = 3146, + [3162] = 3137, + [3163] = 3147, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, [3167] = 3167, - [3168] = 3105, - [3169] = 3111, - [3170] = 3112, + [3168] = 3168, + [3169] = 3169, + [3170] = 3137, [3171] = 3171, - [3172] = 3107, - [3173] = 3124, - [3174] = 3120, - [3175] = 3156, - [3176] = 3124, - [3177] = 3101, - [3178] = 3129, - [3179] = 3130, + [3172] = 3148, + [3173] = 3173, + [3174] = 3174, + [3175] = 3149, + [3176] = 3176, + [3177] = 3145, + [3178] = 3178, + [3179] = 3179, [3180] = 3180, - [3181] = 3125, - [3182] = 3182, + [3181] = 3181, + [3182] = 3174, [3183] = 3183, - [3184] = 3140, + [3184] = 3184, [3185] = 3185, - [3186] = 3143, - [3187] = 3187, + [3186] = 3150, + [3187] = 3135, [3188] = 3188, - [3189] = 3110, - [3190] = 3111, + [3189] = 1468, + [3190] = 3190, [3191] = 3191, [3192] = 3192, [3193] = 3193, - [3194] = 3162, - [3195] = 3155, - [3196] = 3112, + [3194] = 3194, + [3195] = 3169, + [3196] = 3196, [3197] = 3197, - [3198] = 3105, - [3199] = 3191, - [3200] = 3114, - [3201] = 3112, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 3137, [3202] = 3202, - [3203] = 3120, - [3204] = 3204, - [3205] = 3101, - [3206] = 3202, - [3207] = 3129, - [3208] = 3130, - [3209] = 3115, - [3210] = 1408, - [3211] = 3136, - [3212] = 3212, - [3213] = 3213, - [3214] = 3101, + [3203] = 3137, + [3204] = 2941, + [3205] = 3141, + [3206] = 2966, + [3207] = 3207, + [3208] = 3147, + [3209] = 3148, + [3210] = 3210, + [3211] = 3188, + [3212] = 3202, + [3213] = 3152, + [3214] = 3152, [3215] = 3215, - [3216] = 3213, - [3217] = 3217, + [3216] = 3198, + [3217] = 3159, [3218] = 3218, - [3219] = 3112, + [3219] = 3137, [3220] = 3220, - [3221] = 3101, - [3222] = 3129, - [3223] = 3130, + [3221] = 3164, + [3222] = 3165, + [3223] = 3223, [3224] = 3224, [3225] = 3225, [3226] = 3226, - [3227] = 3053, + [3227] = 3227, [3228] = 3228, [3229] = 3229, [3230] = 3230, - [3231] = 3112, - [3232] = 3101, - [3233] = 3129, - [3234] = 3130, - [3235] = 3120, - [3236] = 3115, - [3237] = 3237, - [3238] = 3112, - [3239] = 3101, - [3240] = 3129, - [3241] = 3130, - [3242] = 3112, - [3243] = 3129, - [3244] = 3130, - [3245] = 3112, - [3246] = 3129, - [3247] = 3130, - [3248] = 3112, - [3249] = 3129, - [3250] = 3130, - [3251] = 3112, - [3252] = 3129, - [3253] = 3130, - [3254] = 3254, + [3231] = 3220, + [3232] = 3232, + [3233] = 3233, + [3234] = 3223, + [3235] = 3228, + [3236] = 3236, + [3237] = 3158, + [3238] = 3141, + [3239] = 3239, + [3240] = 3240, + [3241] = 3148, + [3242] = 3159, + [3243] = 3152, + [3244] = 3160, + [3245] = 3137, + [3246] = 3158, + [3247] = 3164, + [3248] = 3165, + [3249] = 3249, + [3250] = 3250, + [3251] = 3192, + [3252] = 3252, + [3253] = 3190, + [3254] = 3210, [3255] = 3255, - [3256] = 3215, + [3256] = 3148, [3257] = 3257, - [3258] = 3258, - [3259] = 3217, - [3260] = 3224, - [3261] = 3102, - [3262] = 3225, - [3263] = 3263, - [3264] = 3114, - [3265] = 3142, + [3258] = 3137, + [3259] = 3164, + [3260] = 3165, + [3261] = 3140, + [3262] = 3159, + [3263] = 3171, + [3264] = 3264, + [3265] = 3265, [3266] = 3266, - [3267] = 3267, + [3267] = 3148, [3268] = 3268, - [3269] = 3269, - [3270] = 3270, - [3271] = 3117, - [3272] = 3272, - [3273] = 3273, - [3274] = 3124, - [3275] = 3146, - [3276] = 3125, - [3277] = 3277, - [3278] = 3278, - [3279] = 3279, - [3280] = 3280, - [3281] = 3281, - [3282] = 3282, - [3283] = 3283, - [3284] = 3284, - [3285] = 3285, - [3286] = 3286, - [3287] = 3257, - [3288] = 3288, - [3289] = 3289, - [3290] = 3290, - [3291] = 3101, - [3292] = 3292, - [3293] = 3293, - [3294] = 3294, - [3295] = 3103, - [3296] = 3288, - [3297] = 3110, - [3298] = 3258, - [3299] = 3255, + [3269] = 3137, + [3270] = 3164, + [3271] = 3165, + [3272] = 3137, + [3273] = 3157, + [3274] = 3215, + [3275] = 3275, + [3276] = 3148, + [3277] = 3137, + [3278] = 3164, + [3279] = 3165, + [3280] = 3148, + [3281] = 3164, + [3282] = 3165, + [3283] = 3148, + [3284] = 3164, + [3285] = 3165, + [3286] = 3148, + [3287] = 3164, + [3288] = 3165, + [3289] = 3148, + [3290] = 3164, + [3291] = 3165, + [3292] = 3140, + [3293] = 1407, + [3294] = 1408, + [3295] = 3295, + [3296] = 3296, + [3297] = 3160, + [3298] = 3298, + [3299] = 3233, [3300] = 3300, - [3301] = 3254, - [3302] = 3302, - [3303] = 3101, - [3304] = 3273, - [3305] = 3305, - [3306] = 3282, - [3307] = 3284, - [3308] = 3278, - [3309] = 3266, - [3310] = 3263, + [3301] = 3164, + [3302] = 3149, + [3303] = 3296, + [3304] = 3304, + [3305] = 3255, + [3306] = 3306, + [3307] = 3165, + [3308] = 3308, + [3309] = 3185, + [3310] = 3310, [3311] = 3311, - [3312] = 3134, - [3313] = 3267, - [3314] = 3289, - [3315] = 3129, - [3316] = 3316, - [3317] = 3130, - [3318] = 3305, - [3319] = 3237, - [3320] = 3320, - [3321] = 3321, - [3322] = 3283, - [3323] = 3279, - [3324] = 3324, - [3325] = 3278, - [3326] = 3280, - [3327] = 3288, + [3312] = 3312, + [3313] = 3306, + [3314] = 3155, + [3315] = 3315, + [3316] = 3207, + [3317] = 3317, + [3318] = 3318, + [3319] = 3319, + [3320] = 1442, + [3321] = 3249, + [3322] = 3322, + [3323] = 3323, + [3324] = 3153, + [3325] = 3325, + [3326] = 3326, + [3327] = 3308, [3328] = 3328, - [3329] = 3129, - [3330] = 3111, + [3329] = 3329, + [3330] = 3304, [3331] = 3331, - [3332] = 3281, - [3333] = 3197, - [3334] = 3334, - [3335] = 3335, - [3336] = 3102, - [3337] = 3171, - [3338] = 3135, - [3339] = 3266, - [3340] = 3136, - [3341] = 3277, - [3342] = 3146, - [3343] = 3120, - [3344] = 3344, + [3332] = 3312, + [3333] = 3333, + [3334] = 3325, + [3335] = 3333, + [3336] = 1501, + [3337] = 3152, + [3338] = 3164, + [3339] = 3339, + [3340] = 3141, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 3133, [3345] = 3345, - [3346] = 3099, - [3347] = 3193, - [3348] = 3290, - [3349] = 3344, - [3350] = 3102, - [3351] = 3182, - [3352] = 3268, - [3353] = 3102, - [3354] = 3101, - [3355] = 3302, - [3356] = 3180, - [3357] = 3229, - [3358] = 3358, - [3359] = 3113, - [3360] = 3128, - [3361] = 3361, - [3362] = 3152, - [3363] = 3285, - [3364] = 3364, + [3346] = 3196, + [3347] = 3199, + [3348] = 3224, + [3349] = 3225, + [3350] = 3275, + [3351] = 3171, + [3352] = 3215, + [3353] = 3173, + [3354] = 3354, + [3355] = 3173, + [3356] = 3356, + [3357] = 3181, + [3358] = 3146, + [3359] = 3359, + [3360] = 3360, + [3361] = 3323, + [3362] = 3362, + [3363] = 3143, + [3364] = 3362, [3365] = 3365, - [3366] = 3294, - [3367] = 3204, - [3368] = 1381, - [3369] = 3335, - [3370] = 3286, - [3371] = 3300, - [3372] = 3218, - [3373] = 3122, - [3374] = 3133, - [3375] = 3302, - [3376] = 3229, - [3377] = 3218, - [3378] = 3229, - [3379] = 3218, - [3380] = 3292, - [3381] = 3311, - [3382] = 3320, - [3383] = 3270, - [3384] = 3384, + [3366] = 3239, + [3367] = 3150, + [3368] = 3300, + [3369] = 3300, + [3370] = 3296, + [3371] = 3371, + [3372] = 3372, + [3373] = 3207, + [3374] = 3374, + [3375] = 3319, + [3376] = 3356, + [3377] = 3154, + [3378] = 3359, + [3379] = 3371, + [3380] = 3341, + [3381] = 3381, + [3382] = 3300, + [3383] = 3383, + [3384] = 3257, [3385] = 3385, - [3386] = 3386, - [3387] = 3387, - [3388] = 3388, - [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3392, - [3393] = 3393, - [3394] = 3394, - [3395] = 3395, - [3396] = 3396, - [3397] = 3397, - [3398] = 3398, + [3386] = 3149, + [3387] = 3300, + [3388] = 3166, + [3389] = 3183, + [3390] = 3343, + [3391] = 3250, + [3392] = 3165, + [3393] = 3240, + [3394] = 3230, + [3395] = 3178, + [3396] = 3147, + [3397] = 3200, + [3398] = 3218, [3399] = 3399, [3400] = 3400, - [3401] = 3401, - [3402] = 3402, - [3403] = 3403, - [3404] = 3404, - [3405] = 3405, - [3406] = 3399, - [3407] = 3387, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3411, - [3412] = 3402, - [3413] = 3413, - [3414] = 3414, - [3415] = 3415, - [3416] = 3416, + [3401] = 3383, + [3402] = 3226, + [3403] = 3329, + [3404] = 3328, + [3405] = 3399, + [3406] = 3176, + [3407] = 3179, + [3408] = 3345, + [3409] = 3166, + [3410] = 3343, + [3411] = 3176, + [3412] = 3343, + [3413] = 3176, + [3414] = 3317, + [3415] = 3185, + [3416] = 3179, [3417] = 3417, - [3418] = 3418, - [3419] = 3419, - [3420] = 3420, - [3421] = 3392, - [3422] = 3422, + [3418] = 3236, + [3419] = 3137, + [3420] = 3136, + [3421] = 3381, + [3422] = 3167, [3423] = 3423, [3424] = 3424, [3425] = 3425, [3426] = 3426, [3427] = 3427, [3428] = 3428, - [3429] = 3386, - [3430] = 3413, + [3429] = 3429, + [3430] = 3430, [3431] = 3431, [3432] = 3432, [3433] = 3433, [3434] = 3434, [3435] = 3435, - [3436] = 3405, + [3436] = 3436, [3437] = 3437, [3438] = 3438, [3439] = 3439, [3440] = 3440, [3441] = 3441, - [3442] = 3442, + [3442] = 161, [3443] = 3443, - [3444] = 3415, + [3444] = 3444, [3445] = 3445, [3446] = 3446, - [3447] = 3447, - [3448] = 3397, + [3447] = 3427, + [3448] = 3448, [3449] = 3449, [3450] = 3450, [3451] = 3451, [3452] = 3452, - [3453] = 3399, + [3453] = 3453, [3454] = 3454, - [3455] = 3428, + [3455] = 3455, [3456] = 3456, [3457] = 3457, - [3458] = 3388, + [3458] = 3458, [3459] = 3459, [3460] = 3460, [3461] = 3461, [3462] = 3462, [3463] = 3463, - [3464] = 3464, + [3464] = 3434, [3465] = 3465, [3466] = 3466, - [3467] = 3424, + [3467] = 3435, [3468] = 3468, - [3469] = 3418, + [3469] = 3469, [3470] = 3470, - [3471] = 3390, + [3471] = 3471, [3472] = 3472, [3473] = 3473, [3474] = 3474, [3475] = 3475, [3476] = 3476, - [3477] = 3410, + [3477] = 3477, [3478] = 3478, - [3479] = 3404, - [3480] = 3401, - [3481] = 3403, + [3479] = 3479, + [3480] = 3446, + [3481] = 3481, [3482] = 3482, - [3483] = 3473, - [3484] = 3478, + [3483] = 3462, + [3484] = 3474, [3485] = 3485, - [3486] = 3486, + [3486] = 3463, [3487] = 3487, [3488] = 3488, - [3489] = 3489, + [3489] = 3445, [3490] = 3490, - [3491] = 3482, - [3492] = 3435, + [3491] = 3491, + [3492] = 3492, [3493] = 3493, [3494] = 3494, [3495] = 3495, - [3496] = 3385, + [3496] = 3496, [3497] = 3497, - [3498] = 156, - [3499] = 3490, - [3500] = 3500, - [3501] = 3399, + [3498] = 3498, + [3499] = 3499, + [3500] = 3471, + [3501] = 3495, [3502] = 3502, - [3503] = 3417, + [3503] = 3503, [3504] = 3504, - [3505] = 147, - [3506] = 3441, - [3507] = 3390, - [3508] = 3394, - [3509] = 3493, - [3510] = 3510, + [3505] = 3505, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3509, + [3510] = 3509, [3511] = 3511, - [3512] = 3409, + [3512] = 3460, [3513] = 3513, - [3514] = 3514, + [3514] = 3444, [3515] = 3515, - [3516] = 3516, - [3517] = 3517, - [3518] = 3518, - [3519] = 3494, - [3520] = 3443, + [3516] = 3478, + [3517] = 3503, + [3518] = 3431, + [3519] = 3519, + [3520] = 3520, [3521] = 3521, - [3522] = 3451, - [3523] = 3452, + [3522] = 3496, + [3523] = 3473, [3524] = 3524, - [3525] = 3525, - [3526] = 3405, - [3527] = 3405, - [3528] = 3395, - [3529] = 3426, - [3530] = 3468, + [3525] = 3506, + [3526] = 3439, + [3527] = 3520, + [3528] = 3528, + [3529] = 3529, + [3530] = 3436, [3531] = 3531, - [3532] = 3493, - [3533] = 3454, - [3534] = 3390, + [3532] = 3462, + [3533] = 3533, + [3534] = 3534, [3535] = 3535, - [3536] = 3462, - [3537] = 3427, - [3538] = 3478, - [3539] = 3449, - [3540] = 3437, - [3541] = 3541, - [3542] = 3404, - [3543] = 3543, - [3544] = 3434, - [3545] = 3445, - [3546] = 3399, - [3547] = 3447, - [3548] = 3400, - [3549] = 3402, - [3550] = 3398, - [3551] = 3408, - [3552] = 3552, - [3553] = 3410, - [3554] = 3476, + [3536] = 3536, + [3537] = 3537, + [3538] = 3458, + [3539] = 3539, + [3540] = 3440, + [3541] = 3488, + [3542] = 3542, + [3543] = 3451, + [3544] = 3544, + [3545] = 3503, + [3546] = 3424, + [3547] = 3547, + [3548] = 3534, + [3549] = 3549, + [3550] = 3550, + [3551] = 3551, + [3552] = 3438, + [3553] = 3539, + [3554] = 3481, [3555] = 3555, [3556] = 3556, - [3557] = 3415, + [3557] = 3557, [3558] = 3558, - [3559] = 3417, - [3560] = 3398, - [3561] = 3561, - [3562] = 3427, - [3563] = 3563, + [3559] = 3559, + [3560] = 3459, + [3561] = 3424, + [3562] = 3457, + [3563] = 3434, [3564] = 3564, - [3565] = 3445, - [3566] = 3456, - [3567] = 3447, - [3568] = 3397, - [3569] = 3569, - [3570] = 3450, - [3571] = 3405, - [3572] = 3403, - [3573] = 3511, - [3574] = 3396, - [3575] = 3485, - [3576] = 3405, - [3577] = 3577, - [3578] = 3434, + [3565] = 3430, + [3566] = 3566, + [3567] = 3567, + [3568] = 3568, + [3569] = 3437, + [3570] = 3434, + [3571] = 3454, + [3572] = 3572, + [3573] = 3564, + [3574] = 3574, + [3575] = 3575, + [3576] = 3576, + [3577] = 3485, + [3578] = 3479, [3579] = 3579, [3580] = 3580, - [3581] = 3402, - [3582] = 3564, - [3583] = 3431, - [3584] = 3410, - [3585] = 3552, - [3586] = 3472, - [3587] = 3417, - [3588] = 3515, - [3589] = 3485, - [3590] = 3447, - [3591] = 3450, - [3592] = 3592, + [3581] = 3498, + [3582] = 3433, + [3583] = 3583, + [3584] = 3506, + [3585] = 3438, + [3586] = 3440, + [3587] = 3587, + [3588] = 3448, + [3589] = 3589, + [3590] = 3448, + [3591] = 3591, + [3592] = 3452, [3593] = 3593, - [3594] = 3594, - [3595] = 3434, - [3596] = 3410, - [3597] = 3487, - [3598] = 3417, - [3599] = 3599, - [3600] = 3450, - [3601] = 3434, - [3602] = 3410, - [3603] = 3417, - [3604] = 3432, - [3605] = 3450, - [3606] = 3410, - [3607] = 3417, - [3608] = 3450, - [3609] = 3410, - [3610] = 3410, - [3611] = 3410, - [3612] = 3410, - [3613] = 3410, - [3614] = 3474, + [3594] = 3454, + [3595] = 3508, + [3596] = 3456, + [3597] = 3498, + [3598] = 3529, + [3599] = 3466, + [3600] = 3600, + [3601] = 3601, + [3602] = 3462, + [3603] = 3496, + [3604] = 3485, + [3605] = 3463, + [3606] = 3550, + [3607] = 3488, + [3608] = 3608, + [3609] = 3609, + [3610] = 3472, + [3611] = 3611, + [3612] = 3612, + [3613] = 3446, + [3614] = 3521, [3615] = 3615, - [3616] = 3478, - [3617] = 3617, - [3618] = 3517, - [3619] = 3433, - [3620] = 3416, - [3621] = 3516, - [3622] = 3541, - [3623] = 3521, - [3624] = 3624, - [3625] = 3625, - [3626] = 3626, - [3627] = 3627, - [3628] = 3464, - [3629] = 3518, + [3616] = 3521, + [3617] = 3498, + [3618] = 3425, + [3619] = 3608, + [3620] = 3499, + [3621] = 3440, + [3622] = 3434, + [3623] = 3434, + [3624] = 3448, + [3625] = 3468, + [3626] = 3475, + [3627] = 3456, + [3628] = 3628, + [3629] = 3568, [3630] = 3630, - [3631] = 3500, - [3632] = 3466, - [3633] = 3525, - [3634] = 3450, - [3635] = 3635, - [3636] = 3511, - [3637] = 3637, - [3638] = 3425, - [3639] = 3422, - [3640] = 3640, - [3641] = 3446, - [3642] = 3531, - [3643] = 3518, - [3644] = 3475, - [3645] = 3645, - [3646] = 3646, - [3647] = 3419, - [3648] = 3561, - [3649] = 3475, - [3650] = 3650, - [3651] = 3488, - [3652] = 3561, - [3653] = 3653, - [3654] = 3626, - [3655] = 3655, - [3656] = 3656, - [3657] = 3399, - [3658] = 3393, - [3659] = 3655, - [3660] = 3486, - [3661] = 3517, - [3662] = 3433, - [3663] = 3516, - [3664] = 3541, - [3665] = 3665, - [3666] = 3666, - [3667] = 3517, - [3668] = 3541, - [3669] = 3440, - [3670] = 3445, - [3671] = 3541, - [3672] = 3541, - [3673] = 3541, - [3674] = 3594, - [3675] = 3646, - [3676] = 3599, - [3677] = 3511, - [3678] = 3569, - [3679] = 3679, - [3680] = 3400, - [3681] = 3593, - [3682] = 3495, - [3683] = 3535, - [3684] = 3423, - [3685] = 3489, - [3686] = 3514, - [3687] = 3687, - [3688] = 3679, - [3689] = 3543, - [3690] = 3434, - [3691] = 3615, - [3692] = 3692, - [3693] = 3579, - [3694] = 3561, - [3695] = 3695, - [3696] = 3696, - [3697] = 3697, + [3631] = 3485, + [3632] = 3488, + [3633] = 163, + [3634] = 3634, + [3635] = 3504, + [3636] = 3470, + [3637] = 3498, + [3638] = 3448, + [3639] = 3455, + [3640] = 3456, + [3641] = 3544, + [3642] = 3488, + [3643] = 3498, + [3644] = 3448, + [3645] = 3456, + [3646] = 3465, + [3647] = 3488, + [3648] = 3448, + [3649] = 3456, + [3650] = 3488, + [3651] = 3448, + [3652] = 3448, + [3653] = 3448, + [3654] = 3448, + [3655] = 3448, + [3656] = 3423, + [3657] = 3493, + [3658] = 3658, + [3659] = 3478, + [3660] = 3507, + [3661] = 3661, + [3662] = 3630, + [3663] = 3556, + [3664] = 3574, + [3665] = 3502, + [3666] = 3519, + [3667] = 3476, + [3668] = 3668, + [3669] = 3551, + [3670] = 3531, + [3671] = 3671, + [3672] = 3537, + [3673] = 3459, + [3674] = 3674, + [3675] = 3513, + [3676] = 3567, + [3677] = 3469, + [3678] = 3528, + [3679] = 3576, + [3680] = 3680, + [3681] = 3508, + [3682] = 3682, + [3683] = 3683, + [3684] = 3671, + [3685] = 3658, + [3686] = 3508, + [3687] = 3466, + [3688] = 3455, + [3689] = 3689, + [3690] = 3557, + [3691] = 3691, + [3692] = 3506, + [3693] = 3693, + [3694] = 3694, + [3695] = 3456, + [3696] = 3505, + [3697] = 3443, [3698] = 3698, - [3699] = 3699, - [3700] = 3700, + [3699] = 3609, + [3700] = 3453, [3701] = 3701, + [3702] = 3668, + [3703] = 3703, + [3704] = 3691, + [3705] = 3703, + [3706] = 3507, + [3707] = 3661, + [3708] = 3556, + [3709] = 3574, + [3710] = 3453, + [3711] = 3506, + [3712] = 3507, + [3713] = 3574, + [3714] = 3496, + [3715] = 3609, + [3716] = 3574, + [3717] = 3574, + [3718] = 3574, + [3719] = 3674, + [3720] = 3555, + [3721] = 3689, + [3722] = 3722, + [3723] = 3515, + [3724] = 3682, + [3725] = 3536, + [3726] = 3542, + [3727] = 3601, + [3728] = 3728, + [3729] = 3729, + [3730] = 3729, + [3731] = 3453, + [3732] = 3680, + [3733] = 3432, + [3734] = 3628, + [3735] = 3609, + [3736] = 3683, + [3737] = 3661, + [3738] = 3506, + [3739] = 3739, + [3740] = 3740, + [3741] = 3741, + [3742] = 3742, + [3743] = 3743, + [3744] = 3744, + [3745] = 3745, }; const TSCharacterRange sym_identifier_character_set_1[] = { @@ -8437,7 +8511,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 98, '.', 135, '/', 100, - ':', 84, ';', 75, '<', 131, '=', 124, @@ -8520,7 +8593,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 146, '*', 37, '+', 91, - ',', 141, '/', 32, ':', 44, ';', 75, @@ -8558,7 +8630,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 146, '*', 37, '+', 91, - ',', 141, '/', 32, ':', 44, ';', 75, @@ -10322,13 +10393,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 = 5, .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 = 7, .external_lex_state = 2}, [51] = {.lex_state = 7, .external_lex_state = 2}, - [52] = {.lex_state = 7, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, @@ -10344,7 +10415,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, [67] = {.lex_state = 4, .external_lex_state = 2}, - [68] = {.lex_state = 4, .external_lex_state = 2}, + [68] = {.lex_state = 6, .external_lex_state = 2}, [69] = {.lex_state = 4, .external_lex_state = 2}, [70] = {.lex_state = 4, .external_lex_state = 2}, [71] = {.lex_state = 4, .external_lex_state = 2}, @@ -10353,43 +10424,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [74] = {.lex_state = 4, .external_lex_state = 2}, [75] = {.lex_state = 4, .external_lex_state = 2}, [76] = {.lex_state = 4, .external_lex_state = 2}, - [77] = {.lex_state = 6, .external_lex_state = 2}, + [77] = {.lex_state = 4, .external_lex_state = 2}, [78] = {.lex_state = 4, .external_lex_state = 2}, [79] = {.lex_state = 4, .external_lex_state = 2}, [80] = {.lex_state = 4, .external_lex_state = 2}, [81] = {.lex_state = 4, .external_lex_state = 2}, [82] = {.lex_state = 4, .external_lex_state = 2}, [83] = {.lex_state = 4, .external_lex_state = 2}, - [84] = {.lex_state = 4, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 2}, + [84] = {.lex_state = 6, .external_lex_state = 2}, + [85] = {.lex_state = 6, .external_lex_state = 2}, [86] = {.lex_state = 4, .external_lex_state = 2}, [87] = {.lex_state = 4, .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 = 4, .external_lex_state = 2}, - [92] = {.lex_state = 4, .external_lex_state = 2}, - [93] = {.lex_state = 4, .external_lex_state = 2}, + [91] = {.lex_state = 6, .external_lex_state = 2}, + [92] = {.lex_state = 6, .external_lex_state = 2}, + [93] = {.lex_state = 6, .external_lex_state = 2}, [94] = {.lex_state = 4, .external_lex_state = 2}, - [95] = {.lex_state = 4, .external_lex_state = 2}, - [96] = {.lex_state = 4, .external_lex_state = 2}, - [97] = {.lex_state = 4, .external_lex_state = 2}, + [95] = {.lex_state = 6, .external_lex_state = 2}, + [96] = {.lex_state = 6, .external_lex_state = 2}, + [97] = {.lex_state = 6, .external_lex_state = 2}, [98] = {.lex_state = 4, .external_lex_state = 2}, [99] = {.lex_state = 4, .external_lex_state = 2}, [100] = {.lex_state = 4, .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 = 6, .external_lex_state = 2}, + [101] = {.lex_state = 4, .external_lex_state = 2}, + [102] = {.lex_state = 4, .external_lex_state = 2}, + [103] = {.lex_state = 4, .external_lex_state = 2}, + [104] = {.lex_state = 4, .external_lex_state = 2}, + [105] = {.lex_state = 4, .external_lex_state = 2}, [106] = {.lex_state = 6, .external_lex_state = 2}, [107] = {.lex_state = 6, .external_lex_state = 2}, [108] = {.lex_state = 6, .external_lex_state = 2}, [109] = {.lex_state = 6, .external_lex_state = 2}, [110] = {.lex_state = 6, .external_lex_state = 2}, [111] = {.lex_state = 6, .external_lex_state = 2}, - [112] = {.lex_state = 6, .external_lex_state = 2}, - [113] = {.lex_state = 6, .external_lex_state = 2}, + [112] = {.lex_state = 4, .external_lex_state = 2}, + [113] = {.lex_state = 4, .external_lex_state = 2}, [114] = {.lex_state = 6, .external_lex_state = 2}, [115] = {.lex_state = 6, .external_lex_state = 2}, [116] = {.lex_state = 6, .external_lex_state = 2}, @@ -10409,63 +10480,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [130] = {.lex_state = 6, .external_lex_state = 2}, [131] = {.lex_state = 6, .external_lex_state = 2}, [132] = {.lex_state = 6, .external_lex_state = 2}, - [133] = {.lex_state = 6, .external_lex_state = 2}, + [133] = {.lex_state = 4, .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}, + [136] = {.lex_state = 13, .external_lex_state = 2}, [137] = {.lex_state = 13, .external_lex_state = 2}, - [138] = {.lex_state = 4, .external_lex_state = 2}, + [138] = {.lex_state = 13, .external_lex_state = 2}, [139] = {.lex_state = 13, .external_lex_state = 2}, - [140] = {.lex_state = 13, .external_lex_state = 2}, - [141] = {.lex_state = 13, .external_lex_state = 2}, + [140] = {.lex_state = 4, .external_lex_state = 2}, + [141] = {.lex_state = 4, .external_lex_state = 2}, [142] = {.lex_state = 13, .external_lex_state = 2}, - [143] = {.lex_state = 13, .external_lex_state = 2}, - [144] = {.lex_state = 4, .external_lex_state = 2}, - [145] = {.lex_state = 4, .external_lex_state = 2}, + [143] = {.lex_state = 4, .external_lex_state = 2}, + [144] = {.lex_state = 13, .external_lex_state = 2}, + [145] = {.lex_state = 13, .external_lex_state = 2}, [146] = {.lex_state = 4, .external_lex_state = 2}, - [147] = {.lex_state = 4, .external_lex_state = 2}, - [148] = {.lex_state = 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}, + [147] = {.lex_state = 13, .external_lex_state = 2}, + [148] = {.lex_state = 4, .external_lex_state = 2}, + [149] = {.lex_state = 4, .external_lex_state = 2}, + [150] = {.lex_state = 4, .external_lex_state = 2}, + [151] = {.lex_state = 13, .external_lex_state = 2}, [152] = {.lex_state = 13, .external_lex_state = 2}, - [153] = {.lex_state = 6, .external_lex_state = 2}, + [153] = {.lex_state = 13, .external_lex_state = 2}, [154] = {.lex_state = 4, .external_lex_state = 2}, [155] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, - [160] = {.lex_state = 4, .external_lex_state = 2}, + [158] = {.lex_state = 13, .external_lex_state = 2}, + [159] = {.lex_state = 4, .external_lex_state = 2}, + [160] = {.lex_state = 13, .external_lex_state = 2}, [161] = {.lex_state = 4, .external_lex_state = 2}, - [162] = {.lex_state = 13, .external_lex_state = 2}, - [163] = {.lex_state = 13, .external_lex_state = 2}, - [164] = {.lex_state = 4, .external_lex_state = 2}, - [165] = {.lex_state = 4, .external_lex_state = 2}, + [162] = {.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 = 4, .external_lex_state = 2}, - [167] = {.lex_state = 13, .external_lex_state = 2}, - [168] = {.lex_state = 4, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 2}, + [167] = {.lex_state = 4, .external_lex_state = 2}, + [168] = {.lex_state = 13, .external_lex_state = 2}, + [169] = {.lex_state = 13, .external_lex_state = 2}, [170] = {.lex_state = 4, .external_lex_state = 2}, - [171] = {.lex_state = 4, .external_lex_state = 2}, - [172] = {.lex_state = 4, .external_lex_state = 2}, - [173] = {.lex_state = 4, .external_lex_state = 2}, + [171] = {.lex_state = 13, .external_lex_state = 2}, + [172] = {.lex_state = 13, .external_lex_state = 2}, + [173] = {.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 = 13, .external_lex_state = 2}, + [176] = {.lex_state = 4, .external_lex_state = 2}, [177] = {.lex_state = 13, .external_lex_state = 2}, [178] = {.lex_state = 4, .external_lex_state = 2}, [179] = {.lex_state = 13, .external_lex_state = 2}, [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 13, .external_lex_state = 2}, - [182] = {.lex_state = 13, .external_lex_state = 2}, - [183] = {.lex_state = 13, .external_lex_state = 2}, + [181] = {.lex_state = 6, .external_lex_state = 2}, + [182] = {.lex_state = 4, .external_lex_state = 2}, + [183] = {.lex_state = 4, .external_lex_state = 2}, [184] = {.lex_state = 13, .external_lex_state = 2}, - [185] = {.lex_state = 6, .external_lex_state = 2}, - [186] = {.lex_state = 13, .external_lex_state = 2}, + [185] = {.lex_state = 13, .external_lex_state = 2}, + [186] = {.lex_state = 4, .external_lex_state = 2}, [187] = {.lex_state = 13, .external_lex_state = 2}, [188] = {.lex_state = 13, .external_lex_state = 2}, - [189] = {.lex_state = 13, .external_lex_state = 2}, + [189] = {.lex_state = 6, .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}, @@ -10473,61 +10544,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 13, .external_lex_state = 2}, [195] = {.lex_state = 13, .external_lex_state = 2}, [196] = {.lex_state = 13, .external_lex_state = 2}, - [197] = {.lex_state = 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 = 6, .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 = 13, .external_lex_state = 2}, - [203] = {.lex_state = 6, .external_lex_state = 2}, - [204] = {.lex_state = 6, .external_lex_state = 2}, - [205] = {.lex_state = 13, .external_lex_state = 2}, - [206] = {.lex_state = 13, .external_lex_state = 2}, - [207] = {.lex_state = 13, .external_lex_state = 2}, + [203] = {.lex_state = 13, .external_lex_state = 2}, + [204] = {.lex_state = 13, .external_lex_state = 2}, + [205] = {.lex_state = 6, .external_lex_state = 2}, + [206] = {.lex_state = 6, .external_lex_state = 2}, + [207] = {.lex_state = 6, .external_lex_state = 2}, [208] = {.lex_state = 6, .external_lex_state = 2}, [209] = {.lex_state = 6, .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 = 13, .external_lex_state = 2}, - [215] = {.lex_state = 13, .external_lex_state = 2}, - [216] = {.lex_state = 13, .external_lex_state = 2}, - [217] = {.lex_state = 15, .external_lex_state = 2}, + [213] = {.lex_state = 13, .external_lex_state = 2}, + [214] = {.lex_state = 6, .external_lex_state = 2}, + [215] = {.lex_state = 15, .external_lex_state = 2}, + [216] = {.lex_state = 15, .external_lex_state = 2}, + [217] = {.lex_state = 13, .external_lex_state = 2}, [218] = {.lex_state = 15, .external_lex_state = 2}, - [219] = {.lex_state = 15, .external_lex_state = 2}, + [219] = {.lex_state = 13, .external_lex_state = 2}, [220] = {.lex_state = 15, .external_lex_state = 2}, - [221] = {.lex_state = 15, .external_lex_state = 2}, + [221] = {.lex_state = 13, .external_lex_state = 2}, [222] = {.lex_state = 15, .external_lex_state = 2}, - [223] = {.lex_state = 15, .external_lex_state = 2}, + [223] = {.lex_state = 13, .external_lex_state = 2}, [224] = {.lex_state = 15, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, [226] = {.lex_state = 13, .external_lex_state = 2}, [227] = {.lex_state = 13, .external_lex_state = 2}, - [228] = {.lex_state = 13, .external_lex_state = 2}, - [229] = {.lex_state = 13, .external_lex_state = 2}, - [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 15, .external_lex_state = 2}, - [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 15, .external_lex_state = 2}, + [229] = {.lex_state = 15, .external_lex_state = 2}, + [230] = {.lex_state = 15, .external_lex_state = 2}, + [231] = {.lex_state = 13, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 15, .external_lex_state = 2}, [234] = {.lex_state = 13, .external_lex_state = 2}, [235] = {.lex_state = 13, .external_lex_state = 2}, [236] = {.lex_state = 13, .external_lex_state = 2}, - [237] = {.lex_state = 15, .external_lex_state = 2}, + [237] = {.lex_state = 13, .external_lex_state = 2}, [238] = {.lex_state = 15, .external_lex_state = 2}, [239] = {.lex_state = 15, .external_lex_state = 2}, [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 15, .external_lex_state = 2}, + [242] = {.lex_state = 13, .external_lex_state = 2}, [243] = {.lex_state = 13, .external_lex_state = 2}, [244] = {.lex_state = 15, .external_lex_state = 2}, - [245] = {.lex_state = 15, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, + [245] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, - [251] = {.lex_state = 12, .external_lex_state = 2}, + [250] = {.lex_state = 12, .external_lex_state = 2}, + [251] = {.lex_state = 13, .external_lex_state = 2}, [252] = {.lex_state = 13, .external_lex_state = 2}, [253] = {.lex_state = 13, .external_lex_state = 2}, [254] = {.lex_state = 13, .external_lex_state = 2}, @@ -10543,8 +10614,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [264] = {.lex_state = 13, .external_lex_state = 2}, [265] = {.lex_state = 13, .external_lex_state = 2}, [266] = {.lex_state = 13, .external_lex_state = 2}, - [267] = {.lex_state = 12, .external_lex_state = 2}, - [268] = {.lex_state = 71, .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}, [270] = {.lex_state = 13, .external_lex_state = 2}, [271] = {.lex_state = 13, .external_lex_state = 2}, @@ -10562,28 +10633,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [283] = {.lex_state = 13, .external_lex_state = 2}, [284] = {.lex_state = 13, .external_lex_state = 2}, [285] = {.lex_state = 13, .external_lex_state = 2}, - [286] = {.lex_state = 12, .external_lex_state = 2}, + [286] = {.lex_state = 13, .external_lex_state = 2}, [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}, [291] = {.lex_state = 13, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, + [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, [294] = {.lex_state = 13, .external_lex_state = 2}, [295] = {.lex_state = 13, .external_lex_state = 2}, [296] = {.lex_state = 13, .external_lex_state = 2}, [297] = {.lex_state = 13, .external_lex_state = 2}, [298] = {.lex_state = 13, .external_lex_state = 2}, - [299] = {.lex_state = 12, .external_lex_state = 2}, + [299] = {.lex_state = 13, .external_lex_state = 2}, [300] = {.lex_state = 13, .external_lex_state = 2}, - [301] = {.lex_state = 13, .external_lex_state = 2}, + [301] = {.lex_state = 12, .external_lex_state = 2}, [302] = {.lex_state = 13, .external_lex_state = 2}, [303] = {.lex_state = 13, .external_lex_state = 2}, [304] = {.lex_state = 13, .external_lex_state = 2}, [305] = {.lex_state = 13, .external_lex_state = 2}, [306] = {.lex_state = 13, .external_lex_state = 2}, - [307] = {.lex_state = 12, .external_lex_state = 2}, + [307] = {.lex_state = 13, .external_lex_state = 2}, [308] = {.lex_state = 13, .external_lex_state = 2}, [309] = {.lex_state = 13, .external_lex_state = 2}, [310] = {.lex_state = 13, .external_lex_state = 2}, @@ -10595,7 +10666,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [316] = {.lex_state = 13, .external_lex_state = 2}, [317] = {.lex_state = 13, .external_lex_state = 2}, [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 13, .external_lex_state = 2}, + [319] = {.lex_state = 71, .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}, @@ -10617,15 +10688,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [338] = {.lex_state = 13, .external_lex_state = 2}, [339] = {.lex_state = 13, .external_lex_state = 2}, [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 13, .external_lex_state = 2}, + [341] = {.lex_state = 12, .external_lex_state = 2}, [342] = {.lex_state = 13, .external_lex_state = 2}, [343] = {.lex_state = 13, .external_lex_state = 2}, - [344] = {.lex_state = 13, .external_lex_state = 2}, + [344] = {.lex_state = 12, .external_lex_state = 2}, [345] = {.lex_state = 13, .external_lex_state = 2}, [346] = {.lex_state = 13, .external_lex_state = 2}, [347] = {.lex_state = 13, .external_lex_state = 2}, - [348] = {.lex_state = 13, .external_lex_state = 2}, - [349] = {.lex_state = 13, .external_lex_state = 2}, + [348] = {.lex_state = 12, .external_lex_state = 2}, + [349] = {.lex_state = 12, .external_lex_state = 2}, [350] = {.lex_state = 13, .external_lex_state = 2}, [351] = {.lex_state = 13, .external_lex_state = 2}, [352] = {.lex_state = 13, .external_lex_state = 2}, @@ -10656,41 +10727,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [377] = {.lex_state = 12, .external_lex_state = 2}, [378] = {.lex_state = 71, .external_lex_state = 2}, [379] = {.lex_state = 71, .external_lex_state = 2}, - [380] = {.lex_state = 12, .external_lex_state = 2}, - [381] = {.lex_state = 12, .external_lex_state = 2}, + [380] = {.lex_state = 71, .external_lex_state = 2}, + [381] = {.lex_state = 71, .external_lex_state = 2}, [382] = {.lex_state = 12, .external_lex_state = 2}, [383] = {.lex_state = 12, .external_lex_state = 2}, - [384] = {.lex_state = 71, .external_lex_state = 2}, - [385] = {.lex_state = 71, .external_lex_state = 2}, + [384] = {.lex_state = 12, .external_lex_state = 2}, + [385] = {.lex_state = 12, .external_lex_state = 2}, [386] = {.lex_state = 12, .external_lex_state = 2}, - [387] = {.lex_state = 71, .external_lex_state = 2}, + [387] = {.lex_state = 12, .external_lex_state = 2}, [388] = {.lex_state = 12, .external_lex_state = 2}, - [389] = {.lex_state = 12, .external_lex_state = 2}, + [389] = {.lex_state = 71, .external_lex_state = 2}, [390] = {.lex_state = 71, .external_lex_state = 2}, - [391] = {.lex_state = 14, .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 = 71, .external_lex_state = 2}, [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 71, .external_lex_state = 2}, + [396] = {.lex_state = 14, .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}, + [398] = {.lex_state = 12, .external_lex_state = 2}, + [399] = {.lex_state = 14, .external_lex_state = 2}, [400] = {.lex_state = 71, .external_lex_state = 2}, [401] = {.lex_state = 71, .external_lex_state = 2}, [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 12, .external_lex_state = 2}, + [403] = {.lex_state = 14, .external_lex_state = 2}, [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, [407] = {.lex_state = 71, .external_lex_state = 2}, [408] = {.lex_state = 71, .external_lex_state = 2}, [409] = {.lex_state = 71, .external_lex_state = 2}, - [410] = {.lex_state = 14, .external_lex_state = 2}, + [410] = {.lex_state = 71, .external_lex_state = 2}, [411] = {.lex_state = 71, .external_lex_state = 2}, [412] = {.lex_state = 71, .external_lex_state = 2}, [413] = {.lex_state = 71, .external_lex_state = 2}, - [414] = {.lex_state = 14, .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}, @@ -10737,18 +10808,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [458] = {.lex_state = 14, .external_lex_state = 2}, [459] = {.lex_state = 14, .external_lex_state = 2}, [460] = {.lex_state = 5, .external_lex_state = 2}, - [461] = {.lex_state = 5, .external_lex_state = 2}, + [461] = {.lex_state = 14, .external_lex_state = 2}, [462] = {.lex_state = 5, .external_lex_state = 2}, [463] = {.lex_state = 5, .external_lex_state = 2}, - [464] = {.lex_state = 14, .external_lex_state = 2}, + [464] = {.lex_state = 5, .external_lex_state = 2}, [465] = {.lex_state = 5, .external_lex_state = 2}, - [466] = {.lex_state = 5, .external_lex_state = 2}, + [466] = {.lex_state = 14, .external_lex_state = 2}, [467] = {.lex_state = 14, .external_lex_state = 2}, - [468] = {.lex_state = 14, .external_lex_state = 2}, + [468] = {.lex_state = 5, .external_lex_state = 2}, [469] = {.lex_state = 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}, + [472] = {.lex_state = 14, .external_lex_state = 2}, [473] = {.lex_state = 5, .external_lex_state = 2}, [474] = {.lex_state = 5, .external_lex_state = 2}, [475] = {.lex_state = 5, .external_lex_state = 2}, @@ -10767,7 +10838,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [488] = {.lex_state = 5, .external_lex_state = 2}, [489] = {.lex_state = 5, .external_lex_state = 2}, [490] = {.lex_state = 5, .external_lex_state = 2}, - [491] = {.lex_state = 14, .external_lex_state = 2}, + [491] = {.lex_state = 5, .external_lex_state = 2}, [492] = {.lex_state = 14, .external_lex_state = 2}, [493] = {.lex_state = 14, .external_lex_state = 2}, [494] = {.lex_state = 73, .external_lex_state = 2}, @@ -10806,7 +10877,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [527] = {.lex_state = 73, .external_lex_state = 2}, [528] = {.lex_state = 73, .external_lex_state = 2}, [529] = {.lex_state = 73, .external_lex_state = 2}, - [530] = {.lex_state = 14, .external_lex_state = 2}, + [530] = {.lex_state = 73, .external_lex_state = 2}, [531] = {.lex_state = 73, .external_lex_state = 2}, [532] = {.lex_state = 73, .external_lex_state = 2}, [533] = {.lex_state = 73, .external_lex_state = 2}, @@ -10831,8 +10902,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 23}, - [556] = {.lex_state = 14, .external_lex_state = 2}, + [555] = {.lex_state = 73, .external_lex_state = 2}, + [556] = {.lex_state = 73, .external_lex_state = 2}, [557] = {.lex_state = 73, .external_lex_state = 2}, [558] = {.lex_state = 73, .external_lex_state = 2}, [559] = {.lex_state = 73, .external_lex_state = 2}, @@ -10844,7 +10915,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [565] = {.lex_state = 73, .external_lex_state = 2}, [566] = {.lex_state = 73, .external_lex_state = 2}, [567] = {.lex_state = 73, .external_lex_state = 2}, - [568] = {.lex_state = 23}, + [568] = {.lex_state = 73, .external_lex_state = 2}, [569] = {.lex_state = 73, .external_lex_state = 2}, [570] = {.lex_state = 73, .external_lex_state = 2}, [571] = {.lex_state = 73, .external_lex_state = 2}, @@ -10866,7 +10937,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [587] = {.lex_state = 73, .external_lex_state = 2}, [588] = {.lex_state = 73, .external_lex_state = 2}, [589] = {.lex_state = 73, .external_lex_state = 2}, - [590] = {.lex_state = 14, .external_lex_state = 2}, + [590] = {.lex_state = 73, .external_lex_state = 2}, [591] = {.lex_state = 73, .external_lex_state = 2}, [592] = {.lex_state = 73, .external_lex_state = 2}, [593] = {.lex_state = 73, .external_lex_state = 2}, @@ -10935,18 +11006,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, - [660] = {.lex_state = 73, .external_lex_state = 2}, + [659] = {.lex_state = 73, .external_lex_state = 2}, + [660] = {.lex_state = 23}, [661] = {.lex_state = 73, .external_lex_state = 2}, [662] = {.lex_state = 73, .external_lex_state = 2}, [663] = {.lex_state = 73, .external_lex_state = 2}, - [664] = {.lex_state = 73, .external_lex_state = 2}, + [664] = {.lex_state = 14, .external_lex_state = 2}, [665] = {.lex_state = 73, .external_lex_state = 2}, [666] = {.lex_state = 73, .external_lex_state = 2}, [667] = {.lex_state = 73, .external_lex_state = 2}, [668] = {.lex_state = 73, .external_lex_state = 2}, [669] = {.lex_state = 73, .external_lex_state = 2}, - [670] = {.lex_state = 14, .external_lex_state = 2}, + [670] = {.lex_state = 73, .external_lex_state = 2}, [671] = {.lex_state = 73, .external_lex_state = 2}, [672] = {.lex_state = 73, .external_lex_state = 2}, [673] = {.lex_state = 73, .external_lex_state = 2}, @@ -10961,24 +11032,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [682] = {.lex_state = 73, .external_lex_state = 2}, [683] = {.lex_state = 73, .external_lex_state = 2}, [684] = {.lex_state = 73, .external_lex_state = 2}, - [685] = {.lex_state = 73, .external_lex_state = 2}, + [685] = {.lex_state = 23}, [686] = {.lex_state = 73, .external_lex_state = 2}, [687] = {.lex_state = 73, .external_lex_state = 2}, - [688] = {.lex_state = 73, .external_lex_state = 2}, - [689] = {.lex_state = 23}, + [688] = {.lex_state = 23}, + [689] = {.lex_state = 73, .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}, + [693] = {.lex_state = 23}, [694] = {.lex_state = 73, .external_lex_state = 2}, [695] = {.lex_state = 73, .external_lex_state = 2}, - [696] = {.lex_state = 73, .external_lex_state = 2}, + [696] = {.lex_state = 14, .external_lex_state = 2}, [697] = {.lex_state = 73, .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}, + [700] = {.lex_state = 14, .external_lex_state = 2}, [701] = {.lex_state = 73, .external_lex_state = 2}, - [702] = {.lex_state = 73, .external_lex_state = 2}, + [702] = {.lex_state = 14, .external_lex_state = 2}, [703] = {.lex_state = 73, .external_lex_state = 2}, [704] = {.lex_state = 73, .external_lex_state = 2}, [705] = {.lex_state = 73, .external_lex_state = 2}, @@ -10989,7 +11060,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [710] = {.lex_state = 73, .external_lex_state = 2}, [711] = {.lex_state = 73, .external_lex_state = 2}, [712] = {.lex_state = 73, .external_lex_state = 2}, - [713] = {.lex_state = 73, .external_lex_state = 2}, + [713] = {.lex_state = 14, .external_lex_state = 2}, [714] = {.lex_state = 73, .external_lex_state = 2}, [715] = {.lex_state = 73, .external_lex_state = 2}, [716] = {.lex_state = 73, .external_lex_state = 2}, @@ -11003,7 +11074,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [724] = {.lex_state = 73, .external_lex_state = 2}, [725] = {.lex_state = 73, .external_lex_state = 2}, [726] = {.lex_state = 73, .external_lex_state = 2}, - [727] = {.lex_state = 14, .external_lex_state = 2}, + [727] = {.lex_state = 73, .external_lex_state = 2}, [728] = {.lex_state = 73, .external_lex_state = 2}, [729] = {.lex_state = 73, .external_lex_state = 2}, [730] = {.lex_state = 73, .external_lex_state = 2}, @@ -11020,7 +11091,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [741] = {.lex_state = 73, .external_lex_state = 2}, [742] = {.lex_state = 73, .external_lex_state = 2}, [743] = {.lex_state = 73, .external_lex_state = 2}, - [744] = {.lex_state = 73, .external_lex_state = 2}, + [744] = {.lex_state = 14, .external_lex_state = 2}, [745] = {.lex_state = 73, .external_lex_state = 2}, [746] = {.lex_state = 73, .external_lex_state = 2}, [747] = {.lex_state = 73, .external_lex_state = 2}, @@ -11049,48 +11120,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [770] = {.lex_state = 73, .external_lex_state = 2}, [771] = {.lex_state = 73, .external_lex_state = 2}, [772] = {.lex_state = 73, .external_lex_state = 2}, - [773] = {.lex_state = 23}, - [774] = {.lex_state = 14, .external_lex_state = 2}, - [775] = {.lex_state = 14, .external_lex_state = 2}, - [776] = {.lex_state = 14, .external_lex_state = 2}, - [777] = {.lex_state = 14, .external_lex_state = 2}, - [778] = {.lex_state = 14, .external_lex_state = 2}, - [779] = {.lex_state = 17}, - [780] = {.lex_state = 14, .external_lex_state = 2}, - [781] = {.lex_state = 17}, + [773] = {.lex_state = 73, .external_lex_state = 2}, + [774] = {.lex_state = 73, .external_lex_state = 2}, + [775] = {.lex_state = 73, .external_lex_state = 2}, + [776] = {.lex_state = 73, .external_lex_state = 2}, + [777] = {.lex_state = 73, .external_lex_state = 2}, + [778] = {.lex_state = 73, .external_lex_state = 2}, + [779] = {.lex_state = 73, .external_lex_state = 2}, + [780] = {.lex_state = 73, .external_lex_state = 2}, + [781] = {.lex_state = 73, .external_lex_state = 2}, [782] = {.lex_state = 14, .external_lex_state = 2}, [783] = {.lex_state = 14, .external_lex_state = 2}, - [784] = {.lex_state = 14, .external_lex_state = 2}, + [784] = {.lex_state = 17}, [785] = {.lex_state = 17}, - [786] = {.lex_state = 17}, + [786] = {.lex_state = 14, .external_lex_state = 2}, [787] = {.lex_state = 14, .external_lex_state = 2}, [788] = {.lex_state = 14, .external_lex_state = 2}, - [789] = {.lex_state = 17}, + [789] = {.lex_state = 14, .external_lex_state = 2}, [790] = {.lex_state = 14, .external_lex_state = 2}, [791] = {.lex_state = 14, .external_lex_state = 2}, [792] = {.lex_state = 14, .external_lex_state = 2}, - [793] = {.lex_state = 17}, - [794] = {.lex_state = 14, .external_lex_state = 2}, + [793] = {.lex_state = 14, .external_lex_state = 2}, + [794] = {.lex_state = 17}, [795] = {.lex_state = 14, .external_lex_state = 2}, [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 12, .external_lex_state = 2}, - [798] = {.lex_state = 17}, + [797] = {.lex_state = 14, .external_lex_state = 2}, + [798] = {.lex_state = 14, .external_lex_state = 2}, [799] = {.lex_state = 14, .external_lex_state = 2}, [800] = {.lex_state = 14, .external_lex_state = 2}, [801] = {.lex_state = 14, .external_lex_state = 2}, [802] = {.lex_state = 14, .external_lex_state = 2}, - [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 17}, + [803] = {.lex_state = 12, .external_lex_state = 2}, + [804] = {.lex_state = 14, .external_lex_state = 2}, [805] = {.lex_state = 14, .external_lex_state = 2}, - [806] = {.lex_state = 14, .external_lex_state = 2}, - [807] = {.lex_state = 14, .external_lex_state = 2}, - [808] = {.lex_state = 14, .external_lex_state = 2}, - [809] = {.lex_state = 14, .external_lex_state = 2}, + [806] = {.lex_state = 17}, + [807] = {.lex_state = 17}, + [808] = {.lex_state = 17}, + [809] = {.lex_state = 17}, [810] = {.lex_state = 14, .external_lex_state = 2}, [811] = {.lex_state = 17}, [812] = {.lex_state = 14, .external_lex_state = 2}, [813] = {.lex_state = 14, .external_lex_state = 2}, - [814] = {.lex_state = 17}, + [814] = {.lex_state = 14, .external_lex_state = 2}, [815] = {.lex_state = 14, .external_lex_state = 2}, [816] = {.lex_state = 14, .external_lex_state = 2}, [817] = {.lex_state = 14, .external_lex_state = 2}, @@ -11098,8 +11169,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [819] = {.lex_state = 14, .external_lex_state = 2}, [820] = {.lex_state = 14, .external_lex_state = 2}, [821] = {.lex_state = 14, .external_lex_state = 2}, - [822] = {.lex_state = 14, .external_lex_state = 2}, - [823] = {.lex_state = 17}, + [822] = {.lex_state = 17}, + [823] = {.lex_state = 14, .external_lex_state = 2}, [824] = {.lex_state = 14, .external_lex_state = 2}, [825] = {.lex_state = 14, .external_lex_state = 2}, [826] = {.lex_state = 14, .external_lex_state = 2}, @@ -11107,8 +11178,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 14, .external_lex_state = 2}, [829] = {.lex_state = 14, .external_lex_state = 2}, [830] = {.lex_state = 14, .external_lex_state = 2}, - [831] = {.lex_state = 14, .external_lex_state = 2}, - [832] = {.lex_state = 14, .external_lex_state = 2}, + [831] = {.lex_state = 17}, + [832] = {.lex_state = 17}, [833] = {.lex_state = 14, .external_lex_state = 2}, [834] = {.lex_state = 14, .external_lex_state = 2}, [835] = {.lex_state = 14, .external_lex_state = 2}, @@ -11117,14 +11188,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [838] = {.lex_state = 14, .external_lex_state = 2}, [839] = {.lex_state = 14, .external_lex_state = 2}, [840] = {.lex_state = 14, .external_lex_state = 2}, - [841] = {.lex_state = 17}, - [842] = {.lex_state = 17}, - [843] = {.lex_state = 17}, - [844] = {.lex_state = 17}, - [845] = {.lex_state = 17}, - [846] = {.lex_state = 17}, - [847] = {.lex_state = 17}, - [848] = {.lex_state = 17}, + [841] = {.lex_state = 14, .external_lex_state = 2}, + [842] = {.lex_state = 14, .external_lex_state = 2}, + [843] = {.lex_state = 14, .external_lex_state = 2}, + [844] = {.lex_state = 14, .external_lex_state = 2}, + [845] = {.lex_state = 14, .external_lex_state = 2}, + [846] = {.lex_state = 14, .external_lex_state = 2}, + [847] = {.lex_state = 14, .external_lex_state = 2}, + [848] = {.lex_state = 14, .external_lex_state = 2}, [849] = {.lex_state = 17}, [850] = {.lex_state = 17}, [851] = {.lex_state = 17}, @@ -11289,111 +11360,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1010] = {.lex_state = 17}, [1011] = {.lex_state = 17}, [1012] = {.lex_state = 17}, - [1013] = {.lex_state = 13, .external_lex_state = 2}, - [1014] = {.lex_state = 13, .external_lex_state = 2}, - [1015] = {.lex_state = 13, .external_lex_state = 2}, - [1016] = {.lex_state = 15, .external_lex_state = 2}, - [1017] = {.lex_state = 15, .external_lex_state = 2}, - [1018] = {.lex_state = 13, .external_lex_state = 2}, - [1019] = {.lex_state = 12, .external_lex_state = 2}, + [1013] = {.lex_state = 17}, + [1014] = {.lex_state = 17}, + [1015] = {.lex_state = 17}, + [1016] = {.lex_state = 17}, + [1017] = {.lex_state = 17}, + [1018] = {.lex_state = 17}, + [1019] = {.lex_state = 17}, [1020] = {.lex_state = 17}, - [1021] = {.lex_state = 13, .external_lex_state = 2}, - [1022] = {.lex_state = 13, .external_lex_state = 2}, - [1023] = {.lex_state = 13, .external_lex_state = 2}, - [1024] = {.lex_state = 8}, - [1025] = {.lex_state = 9}, - [1026] = {.lex_state = 23}, - [1027] = {.lex_state = 23}, - [1028] = {.lex_state = 23}, - [1029] = {.lex_state = 23}, - [1030] = {.lex_state = 23}, - [1031] = {.lex_state = 23}, - [1032] = {.lex_state = 23}, - [1033] = {.lex_state = 8}, - [1034] = {.lex_state = 8}, - [1035] = {.lex_state = 8}, - [1036] = {.lex_state = 23}, - [1037] = {.lex_state = 14, .external_lex_state = 2}, - [1038] = {.lex_state = 23}, - [1039] = {.lex_state = 8}, - [1040] = {.lex_state = 26}, + [1021] = {.lex_state = 17}, + [1022] = {.lex_state = 17}, + [1023] = {.lex_state = 17}, + [1024] = {.lex_state = 17}, + [1025] = {.lex_state = 17}, + [1026] = {.lex_state = 17}, + [1027] = {.lex_state = 17}, + [1028] = {.lex_state = 17}, + [1029] = {.lex_state = 13, .external_lex_state = 2}, + [1030] = {.lex_state = 13, .external_lex_state = 2}, + [1031] = {.lex_state = 13, .external_lex_state = 2}, + [1032] = {.lex_state = 15, .external_lex_state = 2}, + [1033] = {.lex_state = 15, .external_lex_state = 2}, + [1034] = {.lex_state = 13, .external_lex_state = 2}, + [1035] = {.lex_state = 12, .external_lex_state = 2}, + [1036] = {.lex_state = 17}, + [1037] = {.lex_state = 13, .external_lex_state = 2}, + [1038] = {.lex_state = 13, .external_lex_state = 2}, + [1039] = {.lex_state = 13, .external_lex_state = 2}, + [1040] = {.lex_state = 9}, [1041] = {.lex_state = 8}, - [1042] = {.lex_state = 26}, - [1043] = {.lex_state = 8}, - [1044] = {.lex_state = 8}, - [1045] = {.lex_state = 8}, - [1046] = {.lex_state = 8}, - [1047] = {.lex_state = 8}, - [1048] = {.lex_state = 26}, - [1049] = {.lex_state = 26}, - [1050] = {.lex_state = 8}, - [1051] = {.lex_state = 26}, - [1052] = {.lex_state = 9}, - [1053] = {.lex_state = 17}, - [1054] = {.lex_state = 17}, - [1055] = {.lex_state = 9}, - [1056] = {.lex_state = 9}, - [1057] = {.lex_state = 14, .external_lex_state = 2}, - [1058] = {.lex_state = 17}, - [1059] = {.lex_state = 17}, - [1060] = {.lex_state = 9}, - [1061] = {.lex_state = 17}, - [1062] = {.lex_state = 17}, - [1063] = {.lex_state = 14, .external_lex_state = 2}, - [1064] = {.lex_state = 9}, - [1065] = {.lex_state = 17}, - [1066] = {.lex_state = 17}, - [1067] = {.lex_state = 17}, - [1068] = {.lex_state = 9}, - [1069] = {.lex_state = 23}, - [1070] = {.lex_state = 23}, - [1071] = {.lex_state = 23}, - [1072] = {.lex_state = 23}, - [1073] = {.lex_state = 23}, - [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 23}, - [1076] = {.lex_state = 23}, - [1077] = {.lex_state = 23}, - [1078] = {.lex_state = 23}, - [1079] = {.lex_state = 23}, - [1080] = {.lex_state = 23}, - [1081] = {.lex_state = 23}, - [1082] = {.lex_state = 9}, - [1083] = {.lex_state = 20}, + [1042] = {.lex_state = 23}, + [1043] = {.lex_state = 23}, + [1044] = {.lex_state = 23}, + [1045] = {.lex_state = 23}, + [1046] = {.lex_state = 23}, + [1047] = {.lex_state = 23}, + [1048] = {.lex_state = 23}, + [1049] = {.lex_state = 8}, + [1050] = {.lex_state = 23}, + [1051] = {.lex_state = 8}, + [1052] = {.lex_state = 14, .external_lex_state = 2}, + [1053] = {.lex_state = 8}, + [1054] = {.lex_state = 23}, + [1055] = {.lex_state = 17}, + [1056] = {.lex_state = 8}, + [1057] = {.lex_state = 8}, + [1058] = {.lex_state = 8}, + [1059] = {.lex_state = 26}, + [1060] = {.lex_state = 8}, + [1061] = {.lex_state = 8}, + [1062] = {.lex_state = 8}, + [1063] = {.lex_state = 17}, + [1064] = {.lex_state = 17}, + [1065] = {.lex_state = 26}, + [1066] = {.lex_state = 26}, + [1067] = {.lex_state = 26}, + [1068] = {.lex_state = 8}, + [1069] = {.lex_state = 8}, + [1070] = {.lex_state = 26}, + [1071] = {.lex_state = 17}, + [1072] = {.lex_state = 17}, + [1073] = {.lex_state = 9}, + [1074] = {.lex_state = 17}, + [1075] = {.lex_state = 9}, + [1076] = {.lex_state = 14, .external_lex_state = 2}, + [1077] = {.lex_state = 9}, + [1078] = {.lex_state = 9}, + [1079] = {.lex_state = 17}, + [1080] = {.lex_state = 17}, + [1081] = {.lex_state = 17}, + [1082] = {.lex_state = 14, .external_lex_state = 2}, + [1083] = {.lex_state = 9}, [1084] = {.lex_state = 9}, - [1085] = {.lex_state = 14, .external_lex_state = 2}, - [1086] = {.lex_state = 20}, - [1087] = {.lex_state = 23}, - [1088] = {.lex_state = 23}, - [1089] = {.lex_state = 23}, + [1085] = {.lex_state = 17}, + [1086] = {.lex_state = 9}, + [1087] = {.lex_state = 17}, + [1088] = {.lex_state = 17}, + [1089] = {.lex_state = 9}, [1090] = {.lex_state = 23}, - [1091] = {.lex_state = 23}, - [1092] = {.lex_state = 23}, - [1093] = {.lex_state = 23}, - [1094] = {.lex_state = 23}, - [1095] = {.lex_state = 23}, - [1096] = {.lex_state = 23}, - [1097] = {.lex_state = 23}, + [1091] = {.lex_state = 9}, + [1092] = {.lex_state = 9}, + [1093] = {.lex_state = 9}, + [1094] = {.lex_state = 9}, + [1095] = {.lex_state = 14, .external_lex_state = 2}, + [1096] = {.lex_state = 21}, + [1097] = {.lex_state = 14, .external_lex_state = 2}, [1098] = {.lex_state = 23}, - [1099] = {.lex_state = 23}, - [1100] = {.lex_state = 23}, - [1101] = {.lex_state = 23}, - [1102] = {.lex_state = 23}, + [1099] = {.lex_state = 12, .external_lex_state = 2}, + [1100] = {.lex_state = 9}, + [1101] = {.lex_state = 9}, + [1102] = {.lex_state = 9}, [1103] = {.lex_state = 23}, [1104] = {.lex_state = 23}, - [1105] = {.lex_state = 23}, - [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}, - [1113] = {.lex_state = 23}, - [1114] = {.lex_state = 23}, - [1115] = {.lex_state = 23}, + [1105] = {.lex_state = 12, .external_lex_state = 2}, + [1106] = {.lex_state = 9}, + [1107] = {.lex_state = 12, .external_lex_state = 2}, + [1108] = {.lex_state = 9}, + [1109] = {.lex_state = 9}, + [1110] = {.lex_state = 21}, + [1111] = {.lex_state = 20}, + [1112] = {.lex_state = 9}, + [1113] = {.lex_state = 9}, + [1114] = {.lex_state = 20}, + [1115] = {.lex_state = 20}, [1116] = {.lex_state = 23}, - [1117] = {.lex_state = 23}, + [1117] = {.lex_state = 9}, [1118] = {.lex_state = 23}, [1119] = {.lex_state = 23}, [1120] = {.lex_state = 23}, @@ -11410,12 +11481,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1131] = {.lex_state = 23}, [1132] = {.lex_state = 23}, [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 23}, - [1135] = {.lex_state = 14, .external_lex_state = 2}, - [1136] = {.lex_state = 23}, - [1137] = {.lex_state = 23}, - [1138] = {.lex_state = 9}, - [1139] = {.lex_state = 20}, + [1134] = {.lex_state = 8}, + [1135] = {.lex_state = 20}, + [1136] = {.lex_state = 20}, + [1137] = {.lex_state = 20}, + [1138] = {.lex_state = 20}, + [1139] = {.lex_state = 23}, [1140] = {.lex_state = 23}, [1141] = {.lex_state = 23}, [1142] = {.lex_state = 23}, @@ -11451,10 +11522,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1172] = {.lex_state = 23}, [1173] = {.lex_state = 23}, [1174] = {.lex_state = 23}, - [1175] = {.lex_state = 23}, - [1176] = {.lex_state = 23}, - [1177] = {.lex_state = 23}, - [1178] = {.lex_state = 23}, + [1175] = {.lex_state = 9}, + [1176] = {.lex_state = 20}, + [1177] = {.lex_state = 9}, + [1178] = {.lex_state = 20}, [1179] = {.lex_state = 23}, [1180] = {.lex_state = 23}, [1181] = {.lex_state = 23}, @@ -11467,8 +11538,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1188] = {.lex_state = 23}, [1189] = {.lex_state = 23}, [1190] = {.lex_state = 23}, - [1191] = {.lex_state = 9}, - [1192] = {.lex_state = 20}, + [1191] = {.lex_state = 23}, + [1192] = {.lex_state = 23}, [1193] = {.lex_state = 23}, [1194] = {.lex_state = 23}, [1195] = {.lex_state = 23}, @@ -11505,8 +11576,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1226] = {.lex_state = 23}, [1227] = {.lex_state = 23}, [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 23}, - [1230] = {.lex_state = 23}, + [1229] = {.lex_state = 9}, + [1230] = {.lex_state = 20}, [1231] = {.lex_state = 23}, [1232] = {.lex_state = 23}, [1233] = {.lex_state = 23}, @@ -11516,8 +11587,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1237] = {.lex_state = 23}, [1238] = {.lex_state = 23}, [1239] = {.lex_state = 23}, - [1240] = {.lex_state = 9}, - [1241] = {.lex_state = 20}, + [1240] = {.lex_state = 23}, + [1241] = {.lex_state = 23}, [1242] = {.lex_state = 23}, [1243] = {.lex_state = 23}, [1244] = {.lex_state = 23}, @@ -11534,7 +11605,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 23}, + [1258] = {.lex_state = 9}, [1259] = {.lex_state = 23}, [1260] = {.lex_state = 23}, [1261] = {.lex_state = 23}, @@ -11558,8 +11629,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1279] = {.lex_state = 23}, [1280] = {.lex_state = 23}, [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 23}, + [1282] = {.lex_state = 9}, + [1283] = {.lex_state = 20}, [1284] = {.lex_state = 23}, [1285] = {.lex_state = 23}, [1286] = {.lex_state = 23}, @@ -11569,37 +11640,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1290] = {.lex_state = 23}, [1291] = {.lex_state = 23}, [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 17}, - [1294] = {.lex_state = 12, .external_lex_state = 2}, - [1295] = {.lex_state = 9}, - [1296] = {.lex_state = 9}, - [1297] = {.lex_state = 9}, - [1298] = {.lex_state = 14, .external_lex_state = 2}, - [1299] = {.lex_state = 17}, - [1300] = {.lex_state = 9}, + [1293] = {.lex_state = 23}, + [1294] = {.lex_state = 23}, + [1295] = {.lex_state = 23}, + [1296] = {.lex_state = 23}, + [1297] = {.lex_state = 23}, + [1298] = {.lex_state = 23}, + [1299] = {.lex_state = 23}, + [1300] = {.lex_state = 23}, [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, - [1303] = {.lex_state = 9}, - [1304] = {.lex_state = 21}, + [1303] = {.lex_state = 23}, + [1304] = {.lex_state = 23}, [1305] = {.lex_state = 23}, - [1306] = {.lex_state = 14, .external_lex_state = 2}, - [1307] = {.lex_state = 12, .external_lex_state = 2}, - [1308] = {.lex_state = 9}, - [1309] = {.lex_state = 12, .external_lex_state = 2}, - [1310] = {.lex_state = 9}, - [1311] = {.lex_state = 9}, - [1312] = {.lex_state = 14, .external_lex_state = 2}, - [1313] = {.lex_state = 14, .external_lex_state = 2}, - [1314] = {.lex_state = 21}, - [1315] = {.lex_state = 20}, - [1316] = {.lex_state = 9}, - [1317] = {.lex_state = 9}, - [1318] = {.lex_state = 9}, - [1319] = {.lex_state = 20}, - [1320] = {.lex_state = 20}, + [1306] = {.lex_state = 23}, + [1307] = {.lex_state = 23}, + [1308] = {.lex_state = 23}, + [1309] = {.lex_state = 23}, + [1310] = {.lex_state = 23}, + [1311] = {.lex_state = 23}, + [1312] = {.lex_state = 23}, + [1313] = {.lex_state = 23}, + [1314] = {.lex_state = 23}, + [1315] = {.lex_state = 23}, + [1316] = {.lex_state = 23}, + [1317] = {.lex_state = 23}, + [1318] = {.lex_state = 23}, + [1319] = {.lex_state = 23}, + [1320] = {.lex_state = 23}, [1321] = {.lex_state = 23}, - [1322] = {.lex_state = 9}, - [1323] = {.lex_state = 9}, + [1322] = {.lex_state = 23}, + [1323] = {.lex_state = 23}, [1324] = {.lex_state = 23}, [1325] = {.lex_state = 23}, [1326] = {.lex_state = 23}, @@ -11607,30 +11678,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1328] = {.lex_state = 23}, [1329] = {.lex_state = 23}, [1330] = {.lex_state = 23}, - [1331] = {.lex_state = 9}, + [1331] = {.lex_state = 23}, [1332] = {.lex_state = 23}, [1333] = {.lex_state = 23}, [1334] = {.lex_state = 23}, - [1335] = {.lex_state = 23}, - [1336] = {.lex_state = 9}, + [1335] = {.lex_state = 9}, + [1336] = {.lex_state = 20}, [1337] = {.lex_state = 23}, [1338] = {.lex_state = 23}, [1339] = {.lex_state = 23}, [1340] = {.lex_state = 23}, - [1341] = {.lex_state = 17}, - [1342] = {.lex_state = 9}, - [1343] = {.lex_state = 9}, - [1344] = {.lex_state = 9}, + [1341] = {.lex_state = 23}, + [1342] = {.lex_state = 23}, + [1343] = {.lex_state = 23}, + [1344] = {.lex_state = 23}, [1345] = {.lex_state = 23}, - [1346] = {.lex_state = 9}, + [1346] = {.lex_state = 23}, [1347] = {.lex_state = 23}, - [1348] = {.lex_state = 8}, - [1349] = {.lex_state = 20}, - [1350] = {.lex_state = 17}, - [1351] = {.lex_state = 20}, - [1352] = {.lex_state = 20}, - [1353] = {.lex_state = 20}, - [1354] = {.lex_state = 9}, + [1348] = {.lex_state = 23}, + [1349] = {.lex_state = 23}, + [1350] = {.lex_state = 23}, + [1351] = {.lex_state = 23}, + [1352] = {.lex_state = 23}, + [1353] = {.lex_state = 23}, + [1354] = {.lex_state = 23}, [1355] = {.lex_state = 23}, [1356] = {.lex_state = 23}, [1357] = {.lex_state = 23}, @@ -11655,31 +11726,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1376] = {.lex_state = 23}, [1377] = {.lex_state = 23}, [1378] = {.lex_state = 23}, - [1379] = {.lex_state = 17}, - [1380] = {.lex_state = 9}, - [1381] = {.lex_state = 9}, - [1382] = {.lex_state = 9}, - [1383] = {.lex_state = 9}, - [1384] = {.lex_state = 9}, - [1385] = {.lex_state = 9}, - [1386] = {.lex_state = 9}, - [1387] = {.lex_state = 9}, - [1388] = {.lex_state = 9}, - [1389] = {.lex_state = 9}, - [1390] = {.lex_state = 10}, - [1391] = {.lex_state = 17}, + [1379] = {.lex_state = 23}, + [1380] = {.lex_state = 23}, + [1381] = {.lex_state = 23}, + [1382] = {.lex_state = 23}, + [1383] = {.lex_state = 23}, + [1384] = {.lex_state = 23}, + [1385] = {.lex_state = 23}, + [1386] = {.lex_state = 23}, + [1387] = {.lex_state = 23}, + [1388] = {.lex_state = 23}, + [1389] = {.lex_state = 23}, + [1390] = {.lex_state = 23}, + [1391] = {.lex_state = 23}, [1392] = {.lex_state = 9}, - [1393] = {.lex_state = 9}, - [1394] = {.lex_state = 9}, - [1395] = {.lex_state = 9}, - [1396] = {.lex_state = 9}, - [1397] = {.lex_state = 9}, - [1398] = {.lex_state = 9}, + [1393] = {.lex_state = 14, .external_lex_state = 2}, + [1394] = {.lex_state = 17}, + [1395] = {.lex_state = 14, .external_lex_state = 2}, + [1396] = {.lex_state = 14, .external_lex_state = 2}, + [1397] = {.lex_state = 23}, + [1398] = {.lex_state = 14, .external_lex_state = 2}, [1399] = {.lex_state = 9}, [1400] = {.lex_state = 9}, [1401] = {.lex_state = 9}, - [1402] = {.lex_state = 9}, - [1403] = {.lex_state = 9}, + [1402] = {.lex_state = 17}, + [1403] = {.lex_state = 23}, [1404] = {.lex_state = 9}, [1405] = {.lex_state = 9}, [1406] = {.lex_state = 9}, @@ -11709,7 +11780,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1430] = {.lex_state = 9}, [1431] = {.lex_state = 9}, [1432] = {.lex_state = 9}, - [1433] = {.lex_state = 9}, + [1433] = {.lex_state = 17}, [1434] = {.lex_state = 9}, [1435] = {.lex_state = 9}, [1436] = {.lex_state = 9}, @@ -11722,7 +11793,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1443] = {.lex_state = 9}, [1444] = {.lex_state = 9}, [1445] = {.lex_state = 9}, - [1446] = {.lex_state = 17}, + [1446] = {.lex_state = 9}, [1447] = {.lex_state = 9}, [1448] = {.lex_state = 9}, [1449] = {.lex_state = 9}, @@ -11750,7 +11821,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1471] = {.lex_state = 9}, [1472] = {.lex_state = 9}, [1473] = {.lex_state = 9}, - [1474] = {.lex_state = 9}, + [1474] = {.lex_state = 17}, [1475] = {.lex_state = 9}, [1476] = {.lex_state = 9}, [1477] = {.lex_state = 9}, @@ -11758,7 +11829,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1479] = {.lex_state = 9}, [1480] = {.lex_state = 9}, [1481] = {.lex_state = 9}, - [1482] = {.lex_state = 17}, + [1482] = {.lex_state = 9}, [1483] = {.lex_state = 9}, [1484] = {.lex_state = 9}, [1485] = {.lex_state = 9}, @@ -11776,14 +11847,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1497] = {.lex_state = 9}, [1498] = {.lex_state = 9}, [1499] = {.lex_state = 9}, - [1500] = {.lex_state = 9}, + [1500] = {.lex_state = 17}, [1501] = {.lex_state = 9}, - [1502] = {.lex_state = 9}, + [1502] = {.lex_state = 10}, [1503] = {.lex_state = 9}, - [1504] = {.lex_state = 17}, - [1505] = {.lex_state = 17}, + [1504] = {.lex_state = 9}, + [1505] = {.lex_state = 9}, [1506] = {.lex_state = 9}, - [1507] = {.lex_state = 17}, + [1507] = {.lex_state = 9}, [1508] = {.lex_state = 9}, [1509] = {.lex_state = 9}, [1510] = {.lex_state = 9}, @@ -11793,195 +11864,195 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1514] = {.lex_state = 9}, [1515] = {.lex_state = 9}, [1516] = {.lex_state = 9}, - [1517] = {.lex_state = 13, .external_lex_state = 2}, + [1517] = {.lex_state = 9}, [1518] = {.lex_state = 9}, - [1519] = {.lex_state = 13, .external_lex_state = 2}, + [1519] = {.lex_state = 9}, [1520] = {.lex_state = 9}, - [1521] = {.lex_state = 11}, + [1521] = {.lex_state = 9}, [1522] = {.lex_state = 9}, [1523] = {.lex_state = 9}, - [1524] = {.lex_state = 13, .external_lex_state = 2}, + [1524] = {.lex_state = 9}, [1525] = {.lex_state = 9}, [1526] = {.lex_state = 9}, [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 13, .external_lex_state = 2}, + [1528] = {.lex_state = 17}, [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 9}, - [1532] = {.lex_state = 13, .external_lex_state = 2}, - [1533] = {.lex_state = 13, .external_lex_state = 2}, + [1531] = {.lex_state = 17}, + [1532] = {.lex_state = 9}, + [1533] = {.lex_state = 17}, [1534] = {.lex_state = 9}, - [1535] = {.lex_state = 9}, + [1535] = {.lex_state = 13, .external_lex_state = 2}, [1536] = {.lex_state = 9}, [1537] = {.lex_state = 9}, - [1538] = {.lex_state = 17}, - [1539] = {.lex_state = 11}, - [1540] = {.lex_state = 17}, - [1541] = {.lex_state = 17}, + [1538] = {.lex_state = 9}, + [1539] = {.lex_state = 9}, + [1540] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, [1542] = {.lex_state = 11}, - [1543] = {.lex_state = 17}, - [1544] = {.lex_state = 11}, + [1543] = {.lex_state = 9}, + [1544] = {.lex_state = 9}, [1545] = {.lex_state = 9}, - [1546] = {.lex_state = 17}, - [1547] = {.lex_state = 10}, + [1546] = {.lex_state = 13, .external_lex_state = 2}, + [1547] = {.lex_state = 9}, [1548] = {.lex_state = 9}, - [1549] = {.lex_state = 9}, - [1550] = {.lex_state = 10}, - [1551] = {.lex_state = 11}, + [1549] = {.lex_state = 13, .external_lex_state = 2}, + [1550] = {.lex_state = 9}, + [1551] = {.lex_state = 13, .external_lex_state = 2}, [1552] = {.lex_state = 9}, - [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 10}, - [1555] = {.lex_state = 11}, - [1556] = {.lex_state = 11}, - [1557] = {.lex_state = 10}, - [1558] = {.lex_state = 11}, - [1559] = {.lex_state = 9}, - [1560] = {.lex_state = 11}, - [1561] = {.lex_state = 10}, - [1562] = {.lex_state = 9}, - [1563] = {.lex_state = 11}, - [1564] = {.lex_state = 9}, - [1565] = {.lex_state = 11}, + [1553] = {.lex_state = 13, .external_lex_state = 2}, + [1554] = {.lex_state = 9}, + [1555] = {.lex_state = 9}, + [1556] = {.lex_state = 9}, + [1557] = {.lex_state = 9}, + [1558] = {.lex_state = 9}, + [1559] = {.lex_state = 13, .external_lex_state = 2}, + [1560] = {.lex_state = 9}, + [1561] = {.lex_state = 9}, + [1562] = {.lex_state = 17}, + [1563] = {.lex_state = 9}, + [1564] = {.lex_state = 10}, + [1565] = {.lex_state = 17}, [1566] = {.lex_state = 9}, - [1567] = {.lex_state = 9}, - [1568] = {.lex_state = 9}, - [1569] = {.lex_state = 9}, - [1570] = {.lex_state = 10}, - [1571] = {.lex_state = 10}, - [1572] = {.lex_state = 10}, - [1573] = {.lex_state = 10}, - [1574] = {.lex_state = 10}, - [1575] = {.lex_state = 9}, - [1576] = {.lex_state = 17}, + [1567] = {.lex_state = 17}, + [1568] = {.lex_state = 11}, + [1569] = {.lex_state = 17}, + [1570] = {.lex_state = 11}, + [1571] = {.lex_state = 11}, + [1572] = {.lex_state = 17}, + [1573] = {.lex_state = 11}, + [1574] = {.lex_state = 11}, + [1575] = {.lex_state = 11}, + [1576] = {.lex_state = 9}, [1577] = {.lex_state = 9}, - [1578] = {.lex_state = 10}, - [1579] = {.lex_state = 9}, - [1580] = {.lex_state = 9}, - [1581] = {.lex_state = 9}, - [1582] = {.lex_state = 10}, - [1583] = {.lex_state = 17}, + [1578] = {.lex_state = 11}, + [1579] = {.lex_state = 11}, + [1580] = {.lex_state = 10}, + [1581] = {.lex_state = 10}, + [1582] = {.lex_state = 11}, + [1583] = {.lex_state = 9}, [1584] = {.lex_state = 9}, [1585] = {.lex_state = 10}, - [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 10}, + [1586] = {.lex_state = 10}, + [1587] = {.lex_state = 9}, [1588] = {.lex_state = 9}, - [1589] = {.lex_state = 10}, - [1590] = {.lex_state = 10}, + [1589] = {.lex_state = 11}, + [1590] = {.lex_state = 11}, [1591] = {.lex_state = 9}, [1592] = {.lex_state = 9}, - [1593] = {.lex_state = 9}, - [1594] = {.lex_state = 17}, - [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 9}, - [1597] = {.lex_state = 9}, + [1593] = {.lex_state = 10}, + [1594] = {.lex_state = 9}, + [1595] = {.lex_state = 10}, + [1596] = {.lex_state = 10}, + [1597] = {.lex_state = 10}, [1598] = {.lex_state = 10}, [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 9}, - [1601] = {.lex_state = 10}, - [1602] = {.lex_state = 22}, - [1603] = {.lex_state = 10}, + [1600] = {.lex_state = 10}, + [1601] = {.lex_state = 9}, + [1602] = {.lex_state = 10}, + [1603] = {.lex_state = 9}, [1604] = {.lex_state = 10}, - [1605] = {.lex_state = 10}, - [1606] = {.lex_state = 22}, - [1607] = {.lex_state = 10}, - [1608] = {.lex_state = 10}, - [1609] = {.lex_state = 22}, - [1610] = {.lex_state = 22}, + [1605] = {.lex_state = 9}, + [1606] = {.lex_state = 9}, + [1607] = {.lex_state = 9}, + [1608] = {.lex_state = 9}, + [1609] = {.lex_state = 9}, + [1610] = {.lex_state = 9}, [1611] = {.lex_state = 9}, [1612] = {.lex_state = 9}, - [1613] = {.lex_state = 11}, - [1614] = {.lex_state = 22}, - [1615] = {.lex_state = 22}, - [1616] = {.lex_state = 22}, - [1617] = {.lex_state = 22}, - [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 22}, - [1620] = {.lex_state = 9}, - [1621] = {.lex_state = 22}, - [1622] = {.lex_state = 9}, - [1623] = {.lex_state = 22}, + [1613] = {.lex_state = 10}, + [1614] = {.lex_state = 10}, + [1615] = {.lex_state = 9}, + [1616] = {.lex_state = 10}, + [1617] = {.lex_state = 9}, + [1618] = {.lex_state = 9}, + [1619] = {.lex_state = 10}, + [1620] = {.lex_state = 10}, + [1621] = {.lex_state = 17}, + [1622] = {.lex_state = 17}, + [1623] = {.lex_state = 17}, [1624] = {.lex_state = 9}, [1625] = {.lex_state = 9}, - [1626] = {.lex_state = 22}, + [1626] = {.lex_state = 9}, [1627] = {.lex_state = 9}, [1628] = {.lex_state = 9}, - [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 10}, - [1631] = {.lex_state = 9}, - [1632] = {.lex_state = 9}, - [1633] = {.lex_state = 10}, + [1629] = {.lex_state = 22}, + [1630] = {.lex_state = 9}, + [1631] = {.lex_state = 10}, + [1632] = {.lex_state = 10}, + [1633] = {.lex_state = 22}, [1634] = {.lex_state = 10}, [1635] = {.lex_state = 9}, - [1636] = {.lex_state = 10}, + [1636] = {.lex_state = 9}, [1637] = {.lex_state = 9}, - [1638] = {.lex_state = 10}, - [1639] = {.lex_state = 10}, - [1640] = {.lex_state = 10}, - [1641] = {.lex_state = 10}, - [1642] = {.lex_state = 10}, + [1638] = {.lex_state = 9}, + [1639] = {.lex_state = 9}, + [1640] = {.lex_state = 22}, + [1641] = {.lex_state = 9}, + [1642] = {.lex_state = 22}, [1643] = {.lex_state = 10}, - [1644] = {.lex_state = 10}, - [1645] = {.lex_state = 10}, - [1646] = {.lex_state = 9}, + [1644] = {.lex_state = 9}, + [1645] = {.lex_state = 22}, + [1646] = {.lex_state = 10}, [1647] = {.lex_state = 9}, - [1648] = {.lex_state = 9}, + [1648] = {.lex_state = 10}, [1649] = {.lex_state = 9}, [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 9}, + [1651] = {.lex_state = 22}, [1652] = {.lex_state = 9}, [1653] = {.lex_state = 9}, - [1654] = {.lex_state = 9}, + [1654] = {.lex_state = 10}, [1655] = {.lex_state = 9}, [1656] = {.lex_state = 9}, - [1657] = {.lex_state = 17}, - [1658] = {.lex_state = 9}, - [1659] = {.lex_state = 9}, - [1660] = {.lex_state = 10}, - [1661] = {.lex_state = 10}, - [1662] = {.lex_state = 9}, + [1657] = {.lex_state = 9}, + [1658] = {.lex_state = 10}, + [1659] = {.lex_state = 10}, + [1660] = {.lex_state = 22}, + [1661] = {.lex_state = 9}, + [1662] = {.lex_state = 17}, [1663] = {.lex_state = 9}, - [1664] = {.lex_state = 10}, - [1665] = {.lex_state = 10}, - [1666] = {.lex_state = 10}, - [1667] = {.lex_state = 10}, + [1664] = {.lex_state = 22}, + [1665] = {.lex_state = 9}, + [1666] = {.lex_state = 9}, + [1667] = {.lex_state = 9}, [1668] = {.lex_state = 9}, [1669] = {.lex_state = 10}, [1670] = {.lex_state = 10}, [1671] = {.lex_state = 10}, [1672] = {.lex_state = 10}, - [1673] = {.lex_state = 10}, + [1673] = {.lex_state = 9}, [1674] = {.lex_state = 10}, [1675] = {.lex_state = 10}, [1676] = {.lex_state = 10}, - [1677] = {.lex_state = 9}, - [1678] = {.lex_state = 9}, - [1679] = {.lex_state = 10}, - [1680] = {.lex_state = 10}, - [1681] = {.lex_state = 10}, - [1682] = {.lex_state = 10}, + [1677] = {.lex_state = 10}, + [1678] = {.lex_state = 10}, + [1679] = {.lex_state = 11}, + [1680] = {.lex_state = 22}, + [1681] = {.lex_state = 22}, + [1682] = {.lex_state = 9}, [1683] = {.lex_state = 10}, - [1684] = {.lex_state = 10}, - [1685] = {.lex_state = 10}, + [1684] = {.lex_state = 22}, + [1685] = {.lex_state = 22}, [1686] = {.lex_state = 10}, - [1687] = {.lex_state = 10}, + [1687] = {.lex_state = 9}, [1688] = {.lex_state = 10}, [1689] = {.lex_state = 9}, - [1690] = {.lex_state = 9}, + [1690] = {.lex_state = 10}, [1691] = {.lex_state = 9}, [1692] = {.lex_state = 9}, - [1693] = {.lex_state = 10}, - [1694] = {.lex_state = 10}, - [1695] = {.lex_state = 10}, - [1696] = {.lex_state = 10}, + [1693] = {.lex_state = 9}, + [1694] = {.lex_state = 9}, + [1695] = {.lex_state = 9}, + [1696] = {.lex_state = 9}, [1697] = {.lex_state = 9}, - [1698] = {.lex_state = 10}, - [1699] = {.lex_state = 10}, - [1700] = {.lex_state = 10}, + [1698] = {.lex_state = 9}, + [1699] = {.lex_state = 9}, + [1700] = {.lex_state = 9}, [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 10}, - [1703] = {.lex_state = 9}, - [1704] = {.lex_state = 9}, - [1705] = {.lex_state = 9}, + [1702] = {.lex_state = 9}, + [1703] = {.lex_state = 10}, + [1704] = {.lex_state = 10}, + [1705] = {.lex_state = 10}, [1706] = {.lex_state = 10}, [1707] = {.lex_state = 9}, [1708] = {.lex_state = 10}, @@ -11989,30 +12060,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1710] = {.lex_state = 10}, [1711] = {.lex_state = 10}, [1712] = {.lex_state = 10}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 10}, - [1715] = {.lex_state = 9}, + [1713] = {.lex_state = 9}, + [1714] = {.lex_state = 9}, + [1715] = {.lex_state = 10}, [1716] = {.lex_state = 10}, [1717] = {.lex_state = 10}, - [1718] = {.lex_state = 10}, + [1718] = {.lex_state = 9}, [1719] = {.lex_state = 10}, [1720] = {.lex_state = 10}, - [1721] = {.lex_state = 10}, + [1721] = {.lex_state = 9}, [1722] = {.lex_state = 10}, - [1723] = {.lex_state = 10}, + [1723] = {.lex_state = 9}, [1724] = {.lex_state = 10}, [1725] = {.lex_state = 10}, - [1726] = {.lex_state = 10}, + [1726] = {.lex_state = 9}, [1727] = {.lex_state = 10}, [1728] = {.lex_state = 10}, [1729] = {.lex_state = 10}, [1730] = {.lex_state = 10}, [1731] = {.lex_state = 10}, [1732] = {.lex_state = 10}, - [1733] = {.lex_state = 9}, + [1733] = {.lex_state = 10}, [1734] = {.lex_state = 10}, [1735] = {.lex_state = 10}, - [1736] = {.lex_state = 9}, + [1736] = {.lex_state = 10}, [1737] = {.lex_state = 10}, [1738] = {.lex_state = 10}, [1739] = {.lex_state = 10}, @@ -12028,16 +12099,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1749] = {.lex_state = 10}, [1750] = {.lex_state = 10}, [1751] = {.lex_state = 10}, - [1752] = {.lex_state = 10}, - [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 9}, + [1752] = {.lex_state = 9}, + [1753] = {.lex_state = 9}, + [1754] = {.lex_state = 10}, [1755] = {.lex_state = 10}, [1756] = {.lex_state = 10}, [1757] = {.lex_state = 10}, - [1758] = {.lex_state = 9}, - [1759] = {.lex_state = 10}, - [1760] = {.lex_state = 9}, - [1761] = {.lex_state = 10}, + [1758] = {.lex_state = 10}, + [1759] = {.lex_state = 9}, + [1760] = {.lex_state = 10}, + [1761] = {.lex_state = 9}, [1762] = {.lex_state = 10}, [1763] = {.lex_state = 10}, [1764] = {.lex_state = 10}, @@ -12046,99 +12117,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1767] = {.lex_state = 10}, [1768] = {.lex_state = 10}, [1769] = {.lex_state = 10}, - [1770] = {.lex_state = 17}, + [1770] = {.lex_state = 10}, [1771] = {.lex_state = 10}, [1772] = {.lex_state = 10}, [1773] = {.lex_state = 10}, [1774] = {.lex_state = 10}, - [1775] = {.lex_state = 9}, - [1776] = {.lex_state = 9}, + [1775] = {.lex_state = 10}, + [1776] = {.lex_state = 10}, [1777] = {.lex_state = 10}, - [1778] = {.lex_state = 9}, - [1779] = {.lex_state = 10}, - [1780] = {.lex_state = 9}, - [1781] = {.lex_state = 9}, + [1778] = {.lex_state = 10}, + [1779] = {.lex_state = 9}, + [1780] = {.lex_state = 10}, + [1781] = {.lex_state = 10}, [1782] = {.lex_state = 10}, [1783] = {.lex_state = 10}, [1784] = {.lex_state = 10}, [1785] = {.lex_state = 10}, - [1786] = {.lex_state = 9}, + [1786] = {.lex_state = 10}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 10}, - [1789] = {.lex_state = 9}, + [1789] = {.lex_state = 10}, [1790] = {.lex_state = 10}, - [1791] = {.lex_state = 9}, + [1791] = {.lex_state = 10}, [1792] = {.lex_state = 10}, - [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 9}, + [1793] = {.lex_state = 10}, + [1794] = {.lex_state = 10}, [1795] = {.lex_state = 10}, - [1796] = {.lex_state = 9}, + [1796] = {.lex_state = 10}, [1797] = {.lex_state = 10}, - [1798] = {.lex_state = 9}, - [1799] = {.lex_state = 9}, - [1800] = {.lex_state = 9}, - [1801] = {.lex_state = 9}, - [1802] = {.lex_state = 9}, - [1803] = {.lex_state = 9}, + [1798] = {.lex_state = 10}, + [1799] = {.lex_state = 10}, + [1800] = {.lex_state = 10}, + [1801] = {.lex_state = 10}, + [1802] = {.lex_state = 10}, + [1803] = {.lex_state = 10}, [1804] = {.lex_state = 10}, - [1805] = {.lex_state = 9}, - [1806] = {.lex_state = 9}, + [1805] = {.lex_state = 10}, + [1806] = {.lex_state = 10}, [1807] = {.lex_state = 10}, [1808] = {.lex_state = 9}, [1809] = {.lex_state = 9}, - [1810] = {.lex_state = 9}, - [1811] = {.lex_state = 9}, + [1810] = {.lex_state = 10}, + [1811] = {.lex_state = 10}, [1812] = {.lex_state = 10}, [1813] = {.lex_state = 10}, - [1814] = {.lex_state = 9}, - [1815] = {.lex_state = 10}, + [1814] = {.lex_state = 10}, + [1815] = {.lex_state = 9}, [1816] = {.lex_state = 10}, [1817] = {.lex_state = 9}, - [1818] = {.lex_state = 9}, + [1818] = {.lex_state = 10}, [1819] = {.lex_state = 10}, - [1820] = {.lex_state = 10}, - [1821] = {.lex_state = 9}, - [1822] = {.lex_state = 10}, + [1820] = {.lex_state = 9}, + [1821] = {.lex_state = 10}, + [1822] = {.lex_state = 9}, [1823] = {.lex_state = 9}, - [1824] = {.lex_state = 9}, - [1825] = {.lex_state = 9}, - [1826] = {.lex_state = 9}, + [1824] = {.lex_state = 10}, + [1825] = {.lex_state = 10}, + [1826] = {.lex_state = 10}, [1827] = {.lex_state = 9}, - [1828] = {.lex_state = 9}, + [1828] = {.lex_state = 10}, [1829] = {.lex_state = 10}, - [1830] = {.lex_state = 10}, - [1831] = {.lex_state = 10}, + [1830] = {.lex_state = 9}, + [1831] = {.lex_state = 17}, [1832] = {.lex_state = 10}, - [1833] = {.lex_state = 10}, + [1833] = {.lex_state = 9}, [1834] = {.lex_state = 10}, [1835] = {.lex_state = 9}, - [1836] = {.lex_state = 10}, + [1836] = {.lex_state = 9}, [1837] = {.lex_state = 9}, [1838] = {.lex_state = 9}, [1839] = {.lex_state = 9}, [1840] = {.lex_state = 9}, [1841] = {.lex_state = 9}, - [1842] = {.lex_state = 9}, + [1842] = {.lex_state = 10}, [1843] = {.lex_state = 9}, [1844] = {.lex_state = 9}, [1845] = {.lex_state = 10}, - [1846] = {.lex_state = 9}, - [1847] = {.lex_state = 9}, + [1846] = {.lex_state = 10}, + [1847] = {.lex_state = 10}, [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 9}, + [1849] = {.lex_state = 10}, [1850] = {.lex_state = 10}, [1851] = {.lex_state = 10}, [1852] = {.lex_state = 9}, - [1853] = {.lex_state = 10}, + [1853] = {.lex_state = 9}, [1854] = {.lex_state = 9}, - [1855] = {.lex_state = 10}, + [1855] = {.lex_state = 9}, [1856] = {.lex_state = 9}, [1857] = {.lex_state = 9}, [1858] = {.lex_state = 9}, [1859] = {.lex_state = 9}, - [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 10}, - [1862] = {.lex_state = 9}, + [1860] = {.lex_state = 10}, + [1861] = {.lex_state = 17}, + [1862] = {.lex_state = 10}, [1863] = {.lex_state = 9}, [1864] = {.lex_state = 9}, [1865] = {.lex_state = 9}, @@ -12147,236 +12218,236 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1868] = {.lex_state = 9}, [1869] = {.lex_state = 9}, [1870] = {.lex_state = 10}, - [1871] = {.lex_state = 10}, + [1871] = {.lex_state = 9}, [1872] = {.lex_state = 9}, - [1873] = {.lex_state = 9}, - [1874] = {.lex_state = 10}, + [1873] = {.lex_state = 10}, + [1874] = {.lex_state = 9}, [1875] = {.lex_state = 10}, - [1876] = {.lex_state = 10}, - [1877] = {.lex_state = 10}, - [1878] = {.lex_state = 17}, + [1876] = {.lex_state = 9}, + [1877] = {.lex_state = 9}, + [1878] = {.lex_state = 9}, [1879] = {.lex_state = 9}, - [1880] = {.lex_state = 10}, - [1881] = {.lex_state = 17}, - [1882] = {.lex_state = 9}, + [1880] = {.lex_state = 9}, + [1881] = {.lex_state = 9}, + [1882] = {.lex_state = 10}, [1883] = {.lex_state = 9}, [1884] = {.lex_state = 9}, - [1885] = {.lex_state = 17}, + [1885] = {.lex_state = 9}, [1886] = {.lex_state = 9}, - [1887] = {.lex_state = 10}, + [1887] = {.lex_state = 9}, [1888] = {.lex_state = 9}, - [1889] = {.lex_state = 9}, - [1890] = {.lex_state = 9}, + [1889] = {.lex_state = 10}, + [1890] = {.lex_state = 10}, [1891] = {.lex_state = 9}, [1892] = {.lex_state = 9}, - [1893] = {.lex_state = 9}, + [1893] = {.lex_state = 10}, [1894] = {.lex_state = 9}, - [1895] = {.lex_state = 9}, - [1896] = {.lex_state = 9}, + [1895] = {.lex_state = 10}, + [1896] = {.lex_state = 10}, [1897] = {.lex_state = 9}, - [1898] = {.lex_state = 9}, - [1899] = {.lex_state = 9}, + [1898] = {.lex_state = 10}, + [1899] = {.lex_state = 10}, [1900] = {.lex_state = 9}, - [1901] = {.lex_state = 10}, + [1901] = {.lex_state = 9}, [1902] = {.lex_state = 9}, [1903] = {.lex_state = 9}, - [1904] = {.lex_state = 9}, - [1905] = {.lex_state = 17}, + [1904] = {.lex_state = 10}, + [1905] = {.lex_state = 9}, [1906] = {.lex_state = 9}, - [1907] = {.lex_state = 17}, + [1907] = {.lex_state = 9}, [1908] = {.lex_state = 9}, - [1909] = {.lex_state = 17}, + [1909] = {.lex_state = 9}, [1910] = {.lex_state = 9}, [1911] = {.lex_state = 9}, [1912] = {.lex_state = 9}, - [1913] = {.lex_state = 9}, - [1914] = {.lex_state = 9}, + [1913] = {.lex_state = 17}, + [1914] = {.lex_state = 10}, [1915] = {.lex_state = 9}, - [1916] = {.lex_state = 10}, - [1917] = {.lex_state = 9}, - [1918] = {.lex_state = 17}, - [1919] = {.lex_state = 17}, + [1916] = {.lex_state = 9}, + [1917] = {.lex_state = 17}, + [1918] = {.lex_state = 9}, + [1919] = {.lex_state = 9}, [1920] = {.lex_state = 17}, - [1921] = {.lex_state = 17}, + [1921] = {.lex_state = 9}, [1922] = {.lex_state = 17}, - [1923] = {.lex_state = 17}, - [1924] = {.lex_state = 17}, - [1925] = {.lex_state = 17}, + [1923] = {.lex_state = 9}, + [1924] = {.lex_state = 9}, + [1925] = {.lex_state = 9}, [1926] = {.lex_state = 17}, - [1927] = {.lex_state = 17}, - [1928] = {.lex_state = 17}, - [1929] = {.lex_state = 17}, - [1930] = {.lex_state = 17}, - [1931] = {.lex_state = 17}, - [1932] = {.lex_state = 17}, - [1933] = {.lex_state = 17}, - [1934] = {.lex_state = 17}, - [1935] = {.lex_state = 17}, - [1936] = {.lex_state = 17}, - [1937] = {.lex_state = 17}, - [1938] = {.lex_state = 17}, - [1939] = {.lex_state = 17}, - [1940] = {.lex_state = 31}, - [1941] = {.lex_state = 31}, - [1942] = {.lex_state = 18}, - [1943] = {.lex_state = 18}, - [1944] = {.lex_state = 18}, - [1945] = {.lex_state = 18}, - [1946] = {.lex_state = 18}, - [1947] = {.lex_state = 18}, - [1948] = {.lex_state = 18}, - [1949] = {.lex_state = 18}, - [1950] = {.lex_state = 18}, - [1951] = {.lex_state = 18}, - [1952] = {.lex_state = 18}, - [1953] = {.lex_state = 31}, - [1954] = {.lex_state = 31}, - [1955] = {.lex_state = 31}, + [1927] = {.lex_state = 9}, + [1928] = {.lex_state = 9}, + [1929] = {.lex_state = 9}, + [1930] = {.lex_state = 9}, + [1931] = {.lex_state = 9}, + [1932] = {.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 = 9}, + [1939] = {.lex_state = 9}, + [1940] = {.lex_state = 10}, + [1941] = {.lex_state = 9}, + [1942] = {.lex_state = 17}, + [1943] = {.lex_state = 17}, + [1944] = {.lex_state = 17}, + [1945] = {.lex_state = 17}, + [1946] = {.lex_state = 17}, + [1947] = {.lex_state = 17}, + [1948] = {.lex_state = 17}, + [1949] = {.lex_state = 17}, + [1950] = {.lex_state = 17}, + [1951] = {.lex_state = 17}, + [1952] = {.lex_state = 17}, + [1953] = {.lex_state = 17}, + [1954] = {.lex_state = 17}, + [1955] = {.lex_state = 17}, [1956] = {.lex_state = 17}, - [1957] = {.lex_state = 31}, - [1958] = {.lex_state = 18}, + [1957] = {.lex_state = 17}, + [1958] = {.lex_state = 17}, [1959] = {.lex_state = 17}, - [1960] = {.lex_state = 18}, + [1960] = {.lex_state = 17}, [1961] = {.lex_state = 17}, [1962] = {.lex_state = 17}, [1963] = {.lex_state = 17}, - [1964] = {.lex_state = 17}, - [1965] = {.lex_state = 17}, - [1966] = {.lex_state = 13, .external_lex_state = 2}, - [1967] = {.lex_state = 17}, - [1968] = {.lex_state = 31}, + [1964] = {.lex_state = 31}, + [1965] = {.lex_state = 18}, + [1966] = {.lex_state = 31}, + [1967] = {.lex_state = 18}, + [1968] = {.lex_state = 18}, [1969] = {.lex_state = 18}, - [1970] = {.lex_state = 17}, - [1971] = {.lex_state = 17}, - [1972] = {.lex_state = 17}, - [1973] = {.lex_state = 17}, - [1974] = {.lex_state = 17}, + [1970] = {.lex_state = 18}, + [1971] = {.lex_state = 18}, + [1972] = {.lex_state = 18}, + [1973] = {.lex_state = 18}, + [1974] = {.lex_state = 18}, [1975] = {.lex_state = 18}, - [1976] = {.lex_state = 17}, + [1976] = {.lex_state = 31}, [1977] = {.lex_state = 31}, - [1978] = {.lex_state = 31}, + [1978] = {.lex_state = 18}, [1979] = {.lex_state = 17}, [1980] = {.lex_state = 17}, - [1981] = {.lex_state = 17}, - [1982] = {.lex_state = 31}, + [1981] = {.lex_state = 31}, + [1982] = {.lex_state = 18}, [1983] = {.lex_state = 31}, - [1984] = {.lex_state = 18}, - [1985] = {.lex_state = 31}, - [1986] = {.lex_state = 18}, - [1987] = {.lex_state = 31}, - [1988] = {.lex_state = 31}, - [1989] = {.lex_state = 31}, + [1984] = {.lex_state = 17}, + [1985] = {.lex_state = 18}, + [1986] = {.lex_state = 17}, + [1987] = {.lex_state = 17}, + [1988] = {.lex_state = 17}, + [1989] = {.lex_state = 13, .external_lex_state = 2}, [1990] = {.lex_state = 31}, [1991] = {.lex_state = 17}, [1992] = {.lex_state = 17}, - [1993] = {.lex_state = 31}, - [1994] = {.lex_state = 31}, + [1993] = {.lex_state = 17}, + [1994] = {.lex_state = 18}, [1995] = {.lex_state = 18}, - [1996] = {.lex_state = 31}, - [1997] = {.lex_state = 31}, - [1998] = {.lex_state = 31}, + [1996] = {.lex_state = 17}, + [1997] = {.lex_state = 17}, + [1998] = {.lex_state = 17}, [1999] = {.lex_state = 17}, [2000] = {.lex_state = 31}, - [2001] = {.lex_state = 18}, - [2002] = {.lex_state = 17}, + [2001] = {.lex_state = 17}, + [2002] = {.lex_state = 31}, [2003] = {.lex_state = 31}, - [2004] = {.lex_state = 17}, + [2004] = {.lex_state = 31}, [2005] = {.lex_state = 31}, [2006] = {.lex_state = 31}, [2007] = {.lex_state = 31}, - [2008] = {.lex_state = 31}, + [2008] = {.lex_state = 18}, [2009] = {.lex_state = 31}, [2010] = {.lex_state = 31}, [2011] = {.lex_state = 31}, [2012] = {.lex_state = 31}, - [2013] = {.lex_state = 17}, + [2013] = {.lex_state = 31}, [2014] = {.lex_state = 31}, - [2015] = {.lex_state = 31}, - [2016] = {.lex_state = 31}, - [2017] = {.lex_state = 31}, - [2018] = {.lex_state = 31}, - [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 31}, - [2021] = {.lex_state = 31}, - [2022] = {.lex_state = 31}, - [2023] = {.lex_state = 31}, - [2024] = {.lex_state = 31}, - [2025] = {.lex_state = 31}, + [2015] = {.lex_state = 17}, + [2016] = {.lex_state = 17}, + [2017] = {.lex_state = 17}, + [2018] = {.lex_state = 17}, + [2019] = {.lex_state = 31}, + [2020] = {.lex_state = 17}, + [2021] = {.lex_state = 18}, + [2022] = {.lex_state = 17}, + [2023] = {.lex_state = 17}, + [2024] = {.lex_state = 18}, + [2025] = {.lex_state = 18}, [2026] = {.lex_state = 31}, [2027] = {.lex_state = 31}, [2028] = {.lex_state = 31}, [2029] = {.lex_state = 31}, - [2030] = {.lex_state = 18}, - [2031] = {.lex_state = 31}, + [2030] = {.lex_state = 17}, + [2031] = {.lex_state = 18}, [2032] = {.lex_state = 31}, - [2033] = {.lex_state = 17}, - [2034] = {.lex_state = 17}, + [2033] = {.lex_state = 31}, + [2034] = {.lex_state = 31}, [2035] = {.lex_state = 31}, [2036] = {.lex_state = 31}, - [2037] = {.lex_state = 31}, + [2037] = {.lex_state = 17}, [2038] = {.lex_state = 31}, [2039] = {.lex_state = 31}, [2040] = {.lex_state = 31}, - [2041] = {.lex_state = 31}, + [2041] = {.lex_state = 17}, [2042] = {.lex_state = 31}, [2043] = {.lex_state = 31}, - [2044] = {.lex_state = 17}, + [2044] = {.lex_state = 31}, [2045] = {.lex_state = 31}, - [2046] = {.lex_state = 31}, + [2046] = {.lex_state = 17}, [2047] = {.lex_state = 31}, - [2048] = {.lex_state = 17}, - [2049] = {.lex_state = 18}, - [2050] = {.lex_state = 18}, - [2051] = {.lex_state = 18}, - [2052] = {.lex_state = 18}, - [2053] = {.lex_state = 18}, - [2054] = {.lex_state = 18}, - [2055] = {.lex_state = 18}, + [2048] = {.lex_state = 31}, + [2049] = {.lex_state = 17}, + [2050] = {.lex_state = 31}, + [2051] = {.lex_state = 31}, + [2052] = {.lex_state = 31}, + [2053] = {.lex_state = 31}, + [2054] = {.lex_state = 31}, + [2055] = {.lex_state = 31}, [2056] = {.lex_state = 31}, - [2057] = {.lex_state = 18}, - [2058] = {.lex_state = 18}, - [2059] = {.lex_state = 18}, - [2060] = {.lex_state = 18}, - [2061] = {.lex_state = 18}, - [2062] = {.lex_state = 18}, - [2063] = {.lex_state = 19}, + [2057] = {.lex_state = 31}, + [2058] = {.lex_state = 31}, + [2059] = {.lex_state = 31}, + [2060] = {.lex_state = 31}, + [2061] = {.lex_state = 31}, + [2062] = {.lex_state = 31}, + [2063] = {.lex_state = 31}, [2064] = {.lex_state = 31}, - [2065] = {.lex_state = 17}, - [2066] = {.lex_state = 17}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 17}, + [2065] = {.lex_state = 31}, + [2066] = {.lex_state = 31}, + [2067] = {.lex_state = 31}, + [2068] = {.lex_state = 31}, [2069] = {.lex_state = 17}, - [2070] = {.lex_state = 17}, + [2070] = {.lex_state = 31}, [2071] = {.lex_state = 17}, - [2072] = {.lex_state = 17}, - [2073] = {.lex_state = 17}, - [2074] = {.lex_state = 17}, - [2075] = {.lex_state = 19}, - [2076] = {.lex_state = 31}, - [2077] = {.lex_state = 17}, - [2078] = {.lex_state = 17}, - [2079] = {.lex_state = 19}, - [2080] = {.lex_state = 17}, - [2081] = {.lex_state = 17}, - [2082] = {.lex_state = 17}, + [2072] = {.lex_state = 31}, + [2073] = {.lex_state = 18}, + [2074] = {.lex_state = 18}, + [2075] = {.lex_state = 18}, + [2076] = {.lex_state = 18}, + [2077] = {.lex_state = 18}, + [2078] = {.lex_state = 18}, + [2079] = {.lex_state = 18}, + [2080] = {.lex_state = 18}, + [2081] = {.lex_state = 18}, + [2082] = {.lex_state = 18}, [2083] = {.lex_state = 18}, - [2084] = {.lex_state = 27}, - [2085] = {.lex_state = 27}, - [2086] = {.lex_state = 24}, + [2084] = {.lex_state = 31}, + [2085] = {.lex_state = 19}, + [2086] = {.lex_state = 18}, [2087] = {.lex_state = 18}, - [2088] = {.lex_state = 17}, + [2088] = {.lex_state = 31}, [2089] = {.lex_state = 17}, - [2090] = {.lex_state = 31}, + [2090] = {.lex_state = 17}, [2091] = {.lex_state = 17}, - [2092] = {.lex_state = 18}, - [2093] = {.lex_state = 31}, - [2094] = {.lex_state = 19}, + [2092] = {.lex_state = 17}, + [2093] = {.lex_state = 17}, + [2094] = {.lex_state = 17}, [2095] = {.lex_state = 17}, - [2096] = {.lex_state = 31}, + [2096] = {.lex_state = 17}, [2097] = {.lex_state = 17}, - [2098] = {.lex_state = 18}, - [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 18}, + [2098] = {.lex_state = 31}, + [2099] = {.lex_state = 18}, + [2100] = {.lex_state = 17}, [2101] = {.lex_state = 17}, [2102] = {.lex_state = 18}, [2103] = {.lex_state = 17}, @@ -12384,743 +12455,743 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2105] = {.lex_state = 17}, [2106] = {.lex_state = 17}, [2107] = {.lex_state = 24}, - [2108] = {.lex_state = 18}, + [2108] = {.lex_state = 17}, [2109] = {.lex_state = 24}, - [2110] = {.lex_state = 18}, - [2111] = {.lex_state = 18}, - [2112] = {.lex_state = 18}, + [2110] = {.lex_state = 17}, + [2111] = {.lex_state = 17}, + [2112] = {.lex_state = 31}, [2113] = {.lex_state = 17}, - [2114] = {.lex_state = 17}, - [2115] = {.lex_state = 17}, - [2116] = {.lex_state = 31}, - [2117] = {.lex_state = 19}, + [2114] = {.lex_state = 18}, + [2115] = {.lex_state = 31}, + [2116] = {.lex_state = 17}, + [2117] = {.lex_state = 18}, [2118] = {.lex_state = 17}, - [2119] = {.lex_state = 24}, - [2120] = {.lex_state = 17}, - [2121] = {.lex_state = 27}, - [2122] = {.lex_state = 31}, - [2123] = {.lex_state = 31}, - [2124] = {.lex_state = 31}, - [2125] = {.lex_state = 31}, - [2126] = {.lex_state = 31}, - [2127] = {.lex_state = 27}, - [2128] = {.lex_state = 31}, - [2129] = {.lex_state = 19}, - [2130] = {.lex_state = 31}, + [2119] = {.lex_state = 17}, + [2120] = {.lex_state = 19}, + [2121] = {.lex_state = 17}, + [2122] = {.lex_state = 17}, + [2123] = {.lex_state = 18}, + [2124] = {.lex_state = 17}, + [2125] = {.lex_state = 19}, + [2126] = {.lex_state = 19}, + [2127] = {.lex_state = 19}, + [2128] = {.lex_state = 27}, + [2129] = {.lex_state = 17}, + [2130] = {.lex_state = 18}, [2131] = {.lex_state = 31}, [2132] = {.lex_state = 31}, - [2133] = {.lex_state = 31}, - [2134] = {.lex_state = 31}, - [2135] = {.lex_state = 31}, - [2136] = {.lex_state = 31}, - [2137] = {.lex_state = 31}, - [2138] = {.lex_state = 31}, - [2139] = {.lex_state = 27}, - [2140] = {.lex_state = 31}, - [2141] = {.lex_state = 31}, - [2142] = {.lex_state = 31}, - [2143] = {.lex_state = 18}, - [2144] = {.lex_state = 18}, + [2133] = {.lex_state = 27}, + [2134] = {.lex_state = 17}, + [2135] = {.lex_state = 17}, + [2136] = {.lex_state = 17}, + [2137] = {.lex_state = 24}, + [2138] = {.lex_state = 18}, + [2139] = {.lex_state = 24}, + [2140] = {.lex_state = 18}, + [2141] = {.lex_state = 18}, + [2142] = {.lex_state = 18}, + [2143] = {.lex_state = 17}, + [2144] = {.lex_state = 19}, [2145] = {.lex_state = 31}, [2146] = {.lex_state = 31}, [2147] = {.lex_state = 31}, - [2148] = {.lex_state = 17}, + [2148] = {.lex_state = 31}, [2149] = {.lex_state = 31}, [2150] = {.lex_state = 31}, [2151] = {.lex_state = 31}, - [2152] = {.lex_state = 12}, - [2153] = {.lex_state = 31}, - [2154] = {.lex_state = 18}, + [2152] = {.lex_state = 31}, + [2153] = {.lex_state = 27}, + [2154] = {.lex_state = 17}, [2155] = {.lex_state = 31}, [2156] = {.lex_state = 31}, [2157] = {.lex_state = 31}, - [2158] = {.lex_state = 18}, + [2158] = {.lex_state = 31}, [2159] = {.lex_state = 31}, - [2160] = {.lex_state = 31}, - [2161] = {.lex_state = 17}, + [2160] = {.lex_state = 27}, + [2161] = {.lex_state = 31}, [2162] = {.lex_state = 31}, - [2163] = {.lex_state = 27}, + [2163] = {.lex_state = 31}, [2164] = {.lex_state = 31}, [2165] = {.lex_state = 31}, [2166] = {.lex_state = 31}, - [2167] = {.lex_state = 17}, + [2167] = {.lex_state = 31}, [2168] = {.lex_state = 31}, - [2169] = {.lex_state = 31}, - [2170] = {.lex_state = 31}, - [2171] = {.lex_state = 17}, - [2172] = {.lex_state = 17}, + [2169] = {.lex_state = 17}, + [2170] = {.lex_state = 18}, + [2171] = {.lex_state = 18}, + [2172] = {.lex_state = 31}, [2173] = {.lex_state = 27}, - [2174] = {.lex_state = 17}, - [2175] = {.lex_state = 17}, - [2176] = {.lex_state = 19}, - [2177] = {.lex_state = 19}, + [2174] = {.lex_state = 31}, + [2175] = {.lex_state = 27}, + [2176] = {.lex_state = 12}, + [2177] = {.lex_state = 31}, [2178] = {.lex_state = 17}, - [2179] = {.lex_state = 17}, - [2180] = {.lex_state = 18}, - [2181] = {.lex_state = 19}, - [2182] = {.lex_state = 17}, - [2183] = {.lex_state = 17}, - [2184] = {.lex_state = 17}, - [2185] = {.lex_state = 8}, - [2186] = {.lex_state = 17}, - [2187] = {.lex_state = 17}, - [2188] = {.lex_state = 17}, - [2189] = {.lex_state = 17}, - [2190] = {.lex_state = 19}, - [2191] = {.lex_state = 12}, - [2192] = {.lex_state = 17}, + [2179] = {.lex_state = 31}, + [2180] = {.lex_state = 17}, + [2181] = {.lex_state = 31}, + [2182] = {.lex_state = 31}, + [2183] = {.lex_state = 18}, + [2184] = {.lex_state = 31}, + [2185] = {.lex_state = 17}, + [2186] = {.lex_state = 31}, + [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 = 31}, - [2194] = {.lex_state = 17}, - [2195] = {.lex_state = 12}, + [2194] = {.lex_state = 31}, + [2195] = {.lex_state = 18}, [2196] = {.lex_state = 17}, [2197] = {.lex_state = 17}, - [2198] = {.lex_state = 17}, - [2199] = {.lex_state = 8}, - [2200] = {.lex_state = 17}, - [2201] = {.lex_state = 17}, - [2202] = {.lex_state = 17}, - [2203] = {.lex_state = 19}, - [2204] = {.lex_state = 8}, - [2205] = {.lex_state = 31}, - [2206] = {.lex_state = 31}, - [2207] = {.lex_state = 17}, - [2208] = {.lex_state = 31}, - [2209] = {.lex_state = 31}, - [2210] = {.lex_state = 31}, + [2198] = {.lex_state = 12}, + [2199] = {.lex_state = 17}, + [2200] = {.lex_state = 8}, + [2201] = {.lex_state = 12}, + [2202] = {.lex_state = 72}, + [2203] = {.lex_state = 17}, + [2204] = {.lex_state = 17}, + [2205] = {.lex_state = 17}, + [2206] = {.lex_state = 17}, + [2207] = {.lex_state = 31}, + [2208] = {.lex_state = 19}, + [2209] = {.lex_state = 8}, + [2210] = {.lex_state = 19}, [2211] = {.lex_state = 31}, - [2212] = {.lex_state = 31}, - [2213] = {.lex_state = 12}, - [2214] = {.lex_state = 72}, - [2215] = {.lex_state = 17}, + [2212] = {.lex_state = 8}, + [2213] = {.lex_state = 17}, + [2214] = {.lex_state = 17}, + [2215] = {.lex_state = 27}, [2216] = {.lex_state = 12}, - [2217] = {.lex_state = 17}, + [2217] = {.lex_state = 19}, [2218] = {.lex_state = 17}, - [2219] = {.lex_state = 17}, - [2220] = {.lex_state = 17}, - [2221] = {.lex_state = 27}, + [2219] = {.lex_state = 18}, + [2220] = {.lex_state = 19}, + [2221] = {.lex_state = 17}, [2222] = {.lex_state = 17}, [2223] = {.lex_state = 17}, - [2224] = {.lex_state = 17}, + [2224] = {.lex_state = 19}, [2225] = {.lex_state = 17}, [2226] = {.lex_state = 17}, - [2227] = {.lex_state = 27}, - [2228] = {.lex_state = 17}, - [2229] = {.lex_state = 27}, + [2227] = {.lex_state = 17}, + [2228] = {.lex_state = 31}, + [2229] = {.lex_state = 17}, [2230] = {.lex_state = 17}, [2231] = {.lex_state = 17}, [2232] = {.lex_state = 17}, - [2233] = {.lex_state = 27}, - [2234] = {.lex_state = 17}, - [2235] = {.lex_state = 27}, + [2233] = {.lex_state = 17}, + [2234] = {.lex_state = 12}, + [2235] = {.lex_state = 17}, [2236] = {.lex_state = 17}, [2237] = {.lex_state = 17}, - [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 17}, - [2240] = {.lex_state = 17}, - [2241] = {.lex_state = 27}, - [2242] = {.lex_state = 17}, - [2243] = {.lex_state = 17}, + [2238] = {.lex_state = 31}, + [2239] = {.lex_state = 31}, + [2240] = {.lex_state = 31}, + [2241] = {.lex_state = 17}, + [2242] = {.lex_state = 31}, + [2243] = {.lex_state = 31}, [2244] = {.lex_state = 17}, - [2245] = {.lex_state = 17}, - [2246] = {.lex_state = 17}, + [2245] = {.lex_state = 27}, + [2246] = {.lex_state = 27}, [2247] = {.lex_state = 17}, [2248] = {.lex_state = 17}, [2249] = {.lex_state = 17}, [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 27}, + [2251] = {.lex_state = 17}, [2252] = {.lex_state = 17}, - [2253] = {.lex_state = 17}, - [2254] = {.lex_state = 17}, - [2255] = {.lex_state = 12}, + [2253] = {.lex_state = 24}, + [2254] = {.lex_state = 27}, + [2255] = {.lex_state = 17}, [2256] = {.lex_state = 17}, - [2257] = {.lex_state = 27}, + [2257] = {.lex_state = 17}, [2258] = {.lex_state = 17}, - [2259] = {.lex_state = 24}, + [2259] = {.lex_state = 17}, [2260] = {.lex_state = 17}, [2261] = {.lex_state = 17}, [2262] = {.lex_state = 17}, [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 27}, + [2264] = {.lex_state = 17}, [2265] = {.lex_state = 17}, [2266] = {.lex_state = 17}, [2267] = {.lex_state = 27}, [2268] = {.lex_state = 17}, - [2269] = {.lex_state = 17}, - [2270] = {.lex_state = 17}, + [2269] = {.lex_state = 27}, + [2270] = {.lex_state = 27}, [2271] = {.lex_state = 17}, - [2272] = {.lex_state = 27}, + [2272] = {.lex_state = 17}, [2273] = {.lex_state = 27}, - [2274] = {.lex_state = 17}, - [2275] = {.lex_state = 17}, + [2274] = {.lex_state = 27}, + [2275] = {.lex_state = 27}, [2276] = {.lex_state = 17}, - [2277] = {.lex_state = 31}, - [2278] = {.lex_state = 72}, - [2279] = {.lex_state = 72}, - [2280] = {.lex_state = 72}, - [2281] = {.lex_state = 72}, - [2282] = {.lex_state = 72}, - [2283] = {.lex_state = 72}, + [2277] = {.lex_state = 17}, + [2278] = {.lex_state = 17}, + [2279] = {.lex_state = 27}, + [2280] = {.lex_state = 17}, + [2281] = {.lex_state = 27}, + [2282] = {.lex_state = 17}, + [2283] = {.lex_state = 17}, [2284] = {.lex_state = 17}, - [2285] = {.lex_state = 27}, - [2286] = {.lex_state = 27}, - [2287] = {.lex_state = 5}, - [2288] = {.lex_state = 169}, - [2289] = {.lex_state = 72}, - [2290] = {.lex_state = 19}, - [2291] = {.lex_state = 72}, - [2292] = {.lex_state = 72}, - [2293] = {.lex_state = 72}, - [2294] = {.lex_state = 72}, - [2295] = {.lex_state = 72}, - [2296] = {.lex_state = 72}, - [2297] = {.lex_state = 72}, - [2298] = {.lex_state = 72}, + [2285] = {.lex_state = 17}, + [2286] = {.lex_state = 17}, + [2287] = {.lex_state = 27}, + [2288] = {.lex_state = 17}, + [2289] = {.lex_state = 17}, + [2290] = {.lex_state = 17}, + [2291] = {.lex_state = 17}, + [2292] = {.lex_state = 17}, + [2293] = {.lex_state = 17}, + [2294] = {.lex_state = 17}, + [2295] = {.lex_state = 12}, + [2296] = {.lex_state = 17}, + [2297] = {.lex_state = 17}, + [2298] = {.lex_state = 17}, [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 5}, - [2301] = {.lex_state = 12}, - [2302] = {.lex_state = 72}, - [2303] = {.lex_state = 72}, - [2304] = {.lex_state = 17}, + [2300] = {.lex_state = 27}, + [2301] = {.lex_state = 72}, + [2302] = {.lex_state = 17}, + [2303] = {.lex_state = 27}, + [2304] = {.lex_state = 72}, [2305] = {.lex_state = 72}, - [2306] = {.lex_state = 72}, - [2307] = {.lex_state = 72}, - [2308] = {.lex_state = 17}, - [2309] = {.lex_state = 27}, - [2310] = {.lex_state = 27}, - [2311] = {.lex_state = 27}, - [2312] = {.lex_state = 27}, - [2313] = {.lex_state = 17}, + [2306] = {.lex_state = 17}, + [2307] = {.lex_state = 5}, + [2308] = {.lex_state = 72}, + [2309] = {.lex_state = 72}, + [2310] = {.lex_state = 12}, + [2311] = {.lex_state = 72}, + [2312] = {.lex_state = 72}, + [2313] = {.lex_state = 27}, [2314] = {.lex_state = 27}, [2315] = {.lex_state = 27}, - [2316] = {.lex_state = 72}, - [2317] = {.lex_state = 17}, + [2316] = {.lex_state = 27}, + [2317] = {.lex_state = 72}, [2318] = {.lex_state = 72}, [2319] = {.lex_state = 72}, [2320] = {.lex_state = 72}, [2321] = {.lex_state = 72}, [2322] = {.lex_state = 72}, - [2323] = {.lex_state = 72}, - [2324] = {.lex_state = 72}, - [2325] = {.lex_state = 72}, - [2326] = {.lex_state = 5}, - [2327] = {.lex_state = 12}, - [2328] = {.lex_state = 17}, - [2329] = {.lex_state = 12}, - [2330] = {.lex_state = 17}, - [2331] = {.lex_state = 31}, - [2332] = {.lex_state = 17}, + [2323] = {.lex_state = 17}, + [2324] = {.lex_state = 17}, + [2325] = {.lex_state = 5}, + [2326] = {.lex_state = 72}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 72}, + [2329] = {.lex_state = 72}, + [2330] = {.lex_state = 5}, + [2331] = {.lex_state = 12}, + [2332] = {.lex_state = 72}, [2333] = {.lex_state = 72}, - [2334] = {.lex_state = 17}, - [2335] = {.lex_state = 17}, - [2336] = {.lex_state = 17}, - [2337] = {.lex_state = 17}, - [2338] = {.lex_state = 17}, - [2339] = {.lex_state = 17}, - [2340] = {.lex_state = 17}, - [2341] = {.lex_state = 19}, + [2334] = {.lex_state = 72}, + [2335] = {.lex_state = 72}, + [2336] = {.lex_state = 72}, + [2337] = {.lex_state = 72}, + [2338] = {.lex_state = 72}, + [2339] = {.lex_state = 72}, + [2340] = {.lex_state = 72}, + [2341] = {.lex_state = 72}, [2342] = {.lex_state = 31}, - [2343] = {.lex_state = 31}, + [2343] = {.lex_state = 12}, [2344] = {.lex_state = 17}, - [2345] = {.lex_state = 72}, + [2345] = {.lex_state = 31}, [2346] = {.lex_state = 17}, - [2347] = {.lex_state = 19}, + [2347] = {.lex_state = 169}, [2348] = {.lex_state = 17}, [2349] = {.lex_state = 17}, - [2350] = {.lex_state = 17}, + [2350] = {.lex_state = 27}, [2351] = {.lex_state = 17}, - [2352] = {.lex_state = 20}, - [2353] = {.lex_state = 17}, + [2352] = {.lex_state = 27}, + [2353] = {.lex_state = 72}, [2354] = {.lex_state = 17}, - [2355] = {.lex_state = 5}, - [2356] = {.lex_state = 17}, - [2357] = {.lex_state = 17}, - [2358] = {.lex_state = 5}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 19}, + [2357] = {.lex_state = 72}, + [2358] = {.lex_state = 31}, [2359] = {.lex_state = 17}, - [2360] = {.lex_state = 17}, + [2360] = {.lex_state = 27}, [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 17}, - [2363] = {.lex_state = 72}, - [2364] = {.lex_state = 20}, - [2365] = {.lex_state = 31}, - [2366] = {.lex_state = 17}, + [2362] = {.lex_state = 19}, + [2363] = {.lex_state = 17}, + [2364] = {.lex_state = 17}, + [2365] = {.lex_state = 17}, + [2366] = {.lex_state = 31}, [2367] = {.lex_state = 17}, [2368] = {.lex_state = 17}, [2369] = {.lex_state = 17}, - [2370] = {.lex_state = 17}, - [2371] = {.lex_state = 17}, + [2370] = {.lex_state = 31}, + [2371] = {.lex_state = 31}, [2372] = {.lex_state = 17}, - [2373] = {.lex_state = 17}, + [2373] = {.lex_state = 31}, [2374] = {.lex_state = 17}, - [2375] = {.lex_state = 17}, - [2376] = {.lex_state = 19}, - [2377] = {.lex_state = 31}, - [2378] = {.lex_state = 31}, + [2375] = {.lex_state = 15}, + [2376] = {.lex_state = 17}, + [2377] = {.lex_state = 72}, + [2378] = {.lex_state = 17}, [2379] = {.lex_state = 17}, [2380] = {.lex_state = 17}, - [2381] = {.lex_state = 17}, + [2381] = {.lex_state = 31}, [2382] = {.lex_state = 31}, [2383] = {.lex_state = 17}, [2384] = {.lex_state = 17}, - [2385] = {.lex_state = 31}, - [2386] = {.lex_state = 31}, + [2385] = {.lex_state = 17}, + [2386] = {.lex_state = 17}, [2387] = {.lex_state = 17}, [2388] = {.lex_state = 17}, [2389] = {.lex_state = 17}, [2390] = {.lex_state = 17}, - [2391] = {.lex_state = 31}, + [2391] = {.lex_state = 17}, [2392] = {.lex_state = 17}, [2393] = {.lex_state = 17}, - [2394] = {.lex_state = 17}, - [2395] = {.lex_state = 17}, + [2394] = {.lex_state = 72}, + [2395] = {.lex_state = 19}, [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 17}, - [2398] = {.lex_state = 31}, - [2399] = {.lex_state = 31}, - [2400] = {.lex_state = 19}, - [2401] = {.lex_state = 19}, - [2402] = {.lex_state = 19}, - [2403] = {.lex_state = 19}, - [2404] = {.lex_state = 20}, - [2405] = {.lex_state = 17}, - [2406] = {.lex_state = 17}, + [2397] = {.lex_state = 15}, + [2398] = {.lex_state = 17}, + [2399] = {.lex_state = 17}, + [2400] = {.lex_state = 17}, + [2401] = {.lex_state = 17}, + [2402] = {.lex_state = 5}, + [2403] = {.lex_state = 17}, + [2404] = {.lex_state = 17}, + [2405] = {.lex_state = 21}, + [2406] = {.lex_state = 19}, [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 31}, - [2409] = {.lex_state = 15}, - [2410] = {.lex_state = 5}, - [2411] = {.lex_state = 20}, - [2412] = {.lex_state = 5}, - [2413] = {.lex_state = 27}, - [2414] = {.lex_state = 31}, - [2415] = {.lex_state = 31}, + [2408] = {.lex_state = 17}, + [2409] = {.lex_state = 21}, + [2410] = {.lex_state = 31}, + [2411] = {.lex_state = 5}, + [2412] = {.lex_state = 17}, + [2413] = {.lex_state = 21}, + [2414] = {.lex_state = 19}, + [2415] = {.lex_state = 19}, [2416] = {.lex_state = 17}, [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 15}, - [2419] = {.lex_state = 20}, + [2418] = {.lex_state = 17}, + [2419] = {.lex_state = 17}, [2420] = {.lex_state = 17}, - [2421] = {.lex_state = 17}, - [2422] = {.lex_state = 17}, - [2423] = {.lex_state = 17}, + [2421] = {.lex_state = 19}, + [2422] = {.lex_state = 5}, + [2423] = {.lex_state = 21}, [2424] = {.lex_state = 17}, [2425] = {.lex_state = 17}, [2426] = {.lex_state = 17}, - [2427] = {.lex_state = 20}, + [2427] = {.lex_state = 17}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 17}, + [2429] = {.lex_state = 31}, [2430] = {.lex_state = 5}, - [2431] = {.lex_state = 72}, - [2432] = {.lex_state = 17}, + [2431] = {.lex_state = 17}, + [2432] = {.lex_state = 31}, [2433] = {.lex_state = 31}, - [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 19}, - [2436] = {.lex_state = 8}, - [2437] = {.lex_state = 19}, - [2438] = {.lex_state = 31}, - [2439] = {.lex_state = 31}, - [2440] = {.lex_state = 31}, - [2441] = {.lex_state = 17}, - [2442] = {.lex_state = 23}, - [2443] = {.lex_state = 72}, - [2444] = {.lex_state = 8}, + [2434] = {.lex_state = 31}, + [2435] = {.lex_state = 17}, + [2436] = {.lex_state = 17}, + [2437] = {.lex_state = 17}, + [2438] = {.lex_state = 17}, + [2439] = {.lex_state = 17}, + [2440] = {.lex_state = 17}, + [2441] = {.lex_state = 21}, + [2442] = {.lex_state = 17}, + [2443] = {.lex_state = 17}, + [2444] = {.lex_state = 31}, [2445] = {.lex_state = 17}, - [2446] = {.lex_state = 23}, - [2447] = {.lex_state = 31}, - [2448] = {.lex_state = 31}, - [2449] = {.lex_state = 31}, - [2450] = {.lex_state = 31}, - [2451] = {.lex_state = 31}, + [2446] = {.lex_state = 17}, + [2447] = {.lex_state = 17}, + [2448] = {.lex_state = 21}, + [2449] = {.lex_state = 17}, + [2450] = {.lex_state = 17}, + [2451] = {.lex_state = 17}, [2452] = {.lex_state = 31}, - [2453] = {.lex_state = 23}, - [2454] = {.lex_state = 31}, + [2453] = {.lex_state = 19}, + [2454] = {.lex_state = 17}, [2455] = {.lex_state = 17}, - [2456] = {.lex_state = 23}, + [2456] = {.lex_state = 17}, [2457] = {.lex_state = 23}, - [2458] = {.lex_state = 17}, - [2459] = {.lex_state = 23}, - [2460] = {.lex_state = 23, .external_lex_state = 3}, - [2461] = {.lex_state = 31}, - [2462] = {.lex_state = 31}, + [2458] = {.lex_state = 31}, + [2459] = {.lex_state = 31}, + [2460] = {.lex_state = 17}, + [2461] = {.lex_state = 17}, + [2462] = {.lex_state = 17}, [2463] = {.lex_state = 17}, - [2464] = {.lex_state = 31}, - [2465] = {.lex_state = 31}, - [2466] = {.lex_state = 17}, - [2467] = {.lex_state = 23}, - [2468] = {.lex_state = 23}, - [2469] = {.lex_state = 23}, - [2470] = {.lex_state = 23}, - [2471] = {.lex_state = 23}, - [2472] = {.lex_state = 31}, - [2473] = {.lex_state = 23}, - [2474] = {.lex_state = 17}, - [2475] = {.lex_state = 17}, - [2476] = {.lex_state = 17}, - [2477] = {.lex_state = 5}, + [2464] = {.lex_state = 19}, + [2465] = {.lex_state = 17}, + [2466] = {.lex_state = 31}, + [2467] = {.lex_state = 31}, + [2468] = {.lex_state = 31}, + [2469] = {.lex_state = 8}, + [2470] = {.lex_state = 8}, + [2471] = {.lex_state = 31}, + [2472] = {.lex_state = 23}, + [2473] = {.lex_state = 19}, + [2474] = {.lex_state = 23}, + [2475] = {.lex_state = 23}, + [2476] = {.lex_state = 23}, + [2477] = {.lex_state = 31}, [2478] = {.lex_state = 31}, - [2479] = {.lex_state = 23}, - [2480] = {.lex_state = 23}, + [2479] = {.lex_state = 31}, + [2480] = {.lex_state = 17}, [2481] = {.lex_state = 31}, - [2482] = {.lex_state = 23}, - [2483] = {.lex_state = 23}, - [2484] = {.lex_state = 23}, - [2485] = {.lex_state = 17}, + [2482] = {.lex_state = 19}, + [2483] = {.lex_state = 31}, + [2484] = {.lex_state = 17}, + [2485] = {.lex_state = 31}, [2486] = {.lex_state = 23}, - [2487] = {.lex_state = 23}, - [2488] = {.lex_state = 17}, - [2489] = {.lex_state = 23}, - [2490] = {.lex_state = 31}, - [2491] = {.lex_state = 23}, - [2492] = {.lex_state = 8}, + [2487] = {.lex_state = 19}, + [2488] = {.lex_state = 23}, + [2489] = {.lex_state = 31}, + [2490] = {.lex_state = 17}, + [2491] = {.lex_state = 31}, + [2492] = {.lex_state = 31}, [2493] = {.lex_state = 31}, - [2494] = {.lex_state = 23}, - [2495] = {.lex_state = 8}, + [2494] = {.lex_state = 17}, + [2495] = {.lex_state = 17}, [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 31}, - [2498] = {.lex_state = 31}, - [2499] = {.lex_state = 31}, - [2500] = {.lex_state = 17}, - [2501] = {.lex_state = 23}, - [2502] = {.lex_state = 31}, - [2503] = {.lex_state = 17}, - [2504] = {.lex_state = 31}, - [2505] = {.lex_state = 31}, + [2497] = {.lex_state = 23}, + [2498] = {.lex_state = 17}, + [2499] = {.lex_state = 17}, + [2500] = {.lex_state = 31}, + [2501] = {.lex_state = 31}, + [2502] = {.lex_state = 17}, + [2503] = {.lex_state = 23}, + [2504] = {.lex_state = 23}, + [2505] = {.lex_state = 17}, [2506] = {.lex_state = 31}, - [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 23}, - [2509] = {.lex_state = 17}, + [2507] = {.lex_state = 23, .external_lex_state = 3}, + [2508] = {.lex_state = 17}, + [2509] = {.lex_state = 31}, [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 17}, - [2512] = {.lex_state = 17}, - [2513] = {.lex_state = 31}, - [2514] = {.lex_state = 19}, - [2515] = {.lex_state = 31}, - [2516] = {.lex_state = 23}, - [2517] = {.lex_state = 23}, - [2518] = {.lex_state = 19}, - [2519] = {.lex_state = 19}, - [2520] = {.lex_state = 19}, + [2511] = {.lex_state = 31}, + [2512] = {.lex_state = 31}, + [2513] = {.lex_state = 19}, + [2514] = {.lex_state = 23}, + [2515] = {.lex_state = 23}, + [2516] = {.lex_state = 31}, + [2517] = {.lex_state = 31}, + [2518] = {.lex_state = 31}, + [2519] = {.lex_state = 31}, + [2520] = {.lex_state = 23}, [2521] = {.lex_state = 17}, - [2522] = {.lex_state = 17}, + [2522] = {.lex_state = 23}, [2523] = {.lex_state = 23}, [2524] = {.lex_state = 23}, - [2525] = {.lex_state = 31}, - [2526] = {.lex_state = 31}, - [2527] = {.lex_state = 23}, - [2528] = {.lex_state = 23}, - [2529] = {.lex_state = 17}, + [2525] = {.lex_state = 23}, + [2526] = {.lex_state = 17}, + [2527] = {.lex_state = 5}, + [2528] = {.lex_state = 8}, + [2529] = {.lex_state = 72}, [2530] = {.lex_state = 17}, - [2531] = {.lex_state = 17}, + [2531] = {.lex_state = 23}, [2532] = {.lex_state = 23}, [2533] = {.lex_state = 23}, - [2534] = {.lex_state = 23}, - [2535] = {.lex_state = 23}, - [2536] = {.lex_state = 31}, - [2537] = {.lex_state = 23}, - [2538] = {.lex_state = 33}, - [2539] = {.lex_state = 72}, - [2540] = {.lex_state = 72}, - [2541] = {.lex_state = 17}, - [2542] = {.lex_state = 19}, - [2543] = {.lex_state = 72}, - [2544] = {.lex_state = 72}, - [2545] = {.lex_state = 23}, - [2546] = {.lex_state = 19}, - [2547] = {.lex_state = 31}, - [2548] = {.lex_state = 23}, - [2549] = {.lex_state = 17}, - [2550] = {.lex_state = 19}, - [2551] = {.lex_state = 72}, - [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 5}, + [2534] = {.lex_state = 31}, + [2535] = {.lex_state = 72}, + [2536] = {.lex_state = 23}, + [2537] = {.lex_state = 5}, + [2538] = {.lex_state = 17}, + [2539] = {.lex_state = 17}, + [2540] = {.lex_state = 19}, + [2541] = {.lex_state = 23}, + [2542] = {.lex_state = 17}, + [2543] = {.lex_state = 23}, + [2544] = {.lex_state = 17}, + [2545] = {.lex_state = 17}, + [2546] = {.lex_state = 17}, + [2547] = {.lex_state = 17}, + [2548] = {.lex_state = 31}, + [2549] = {.lex_state = 8}, + [2550] = {.lex_state = 17}, + [2551] = {.lex_state = 17}, + [2552] = {.lex_state = 23}, + [2553] = {.lex_state = 23}, [2554] = {.lex_state = 31}, [2555] = {.lex_state = 17}, - [2556] = {.lex_state = 17}, + [2556] = {.lex_state = 23}, [2557] = {.lex_state = 23}, - [2558] = {.lex_state = 23, .external_lex_state = 4}, - [2559] = {.lex_state = 17}, - [2560] = {.lex_state = 17}, - [2561] = {.lex_state = 8}, + [2558] = {.lex_state = 17}, + [2559] = {.lex_state = 31}, + [2560] = {.lex_state = 23}, + [2561] = {.lex_state = 31}, [2562] = {.lex_state = 23}, - [2563] = {.lex_state = 18}, - [2564] = {.lex_state = 23, .external_lex_state = 4}, - [2565] = {.lex_state = 17}, - [2566] = {.lex_state = 8}, - [2567] = {.lex_state = 8}, - [2568] = {.lex_state = 17}, + [2563] = {.lex_state = 23}, + [2564] = {.lex_state = 72}, + [2565] = {.lex_state = 8}, + [2566] = {.lex_state = 17}, + [2567] = {.lex_state = 17}, + [2568] = {.lex_state = 23}, [2569] = {.lex_state = 17}, - [2570] = {.lex_state = 23}, - [2571] = {.lex_state = 31}, + [2570] = {.lex_state = 17}, + [2571] = {.lex_state = 8}, [2572] = {.lex_state = 17}, - [2573] = {.lex_state = 72}, - [2574] = {.lex_state = 17}, + [2573] = {.lex_state = 8}, + [2574] = {.lex_state = 33}, [2575] = {.lex_state = 17}, - [2576] = {.lex_state = 5}, - [2577] = {.lex_state = 17}, - [2578] = {.lex_state = 17}, - [2579] = {.lex_state = 17}, - [2580] = {.lex_state = 17}, - [2581] = {.lex_state = 23}, - [2582] = {.lex_state = 17}, - [2583] = {.lex_state = 8}, - [2584] = {.lex_state = 72}, - [2585] = {.lex_state = 17}, + [2576] = {.lex_state = 72}, + [2577] = {.lex_state = 31}, + [2578] = {.lex_state = 72}, + [2579] = {.lex_state = 72}, + [2580] = {.lex_state = 31}, + [2581] = {.lex_state = 17}, + [2582] = {.lex_state = 23}, + [2583] = {.lex_state = 72}, + [2584] = {.lex_state = 31}, + [2585] = {.lex_state = 72}, [2586] = {.lex_state = 17}, - [2587] = {.lex_state = 17}, - [2588] = {.lex_state = 72}, + [2587] = {.lex_state = 23, .external_lex_state = 4}, + [2588] = {.lex_state = 23}, [2589] = {.lex_state = 23}, - [2590] = {.lex_state = 72}, + [2590] = {.lex_state = 23, .external_lex_state = 4}, [2591] = {.lex_state = 23}, [2592] = {.lex_state = 23}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 23}, - [2595] = {.lex_state = 23, .external_lex_state = 4}, - [2596] = {.lex_state = 8}, - [2597] = {.lex_state = 23}, - [2598] = {.lex_state = 23}, - [2599] = {.lex_state = 33}, - [2600] = {.lex_state = 8}, - [2601] = {.lex_state = 18}, - [2602] = {.lex_state = 8}, - [2603] = {.lex_state = 31}, + [2593] = {.lex_state = 17}, + [2594] = {.lex_state = 72}, + [2595] = {.lex_state = 5}, + [2596] = {.lex_state = 17}, + [2597] = {.lex_state = 17}, + [2598] = {.lex_state = 8}, + [2599] = {.lex_state = 18}, + [2600] = {.lex_state = 72}, + [2601] = {.lex_state = 23}, + [2602] = {.lex_state = 72}, + [2603] = {.lex_state = 23}, [2604] = {.lex_state = 23}, - [2605] = {.lex_state = 72}, - [2606] = {.lex_state = 23}, - [2607] = {.lex_state = 23}, - [2608] = {.lex_state = 23}, + [2605] = {.lex_state = 19}, + [2606] = {.lex_state = 19}, + [2607] = {.lex_state = 19}, + [2608] = {.lex_state = 19}, [2609] = {.lex_state = 23}, - [2610] = {.lex_state = 23}, - [2611] = {.lex_state = 23, .external_lex_state = 4}, - [2612] = {.lex_state = 72}, + [2610] = {.lex_state = 23, .external_lex_state = 4}, + [2611] = {.lex_state = 72}, + [2612] = {.lex_state = 8}, [2613] = {.lex_state = 8}, - [2614] = {.lex_state = 8}, - [2615] = {.lex_state = 31}, + [2614] = {.lex_state = 72}, + [2615] = {.lex_state = 72}, [2616] = {.lex_state = 8}, [2617] = {.lex_state = 8}, [2618] = {.lex_state = 72}, - [2619] = {.lex_state = 72}, + [2619] = {.lex_state = 8}, [2620] = {.lex_state = 8}, - [2621] = {.lex_state = 19}, + [2621] = {.lex_state = 8}, [2622] = {.lex_state = 8}, - [2623] = {.lex_state = 8}, - [2624] = {.lex_state = 31}, - [2625] = {.lex_state = 23, .external_lex_state = 4}, - [2626] = {.lex_state = 23}, - [2627] = {.lex_state = 72}, - [2628] = {.lex_state = 72}, - [2629] = {.lex_state = 72}, - [2630] = {.lex_state = 72}, - [2631] = {.lex_state = 72}, - [2632] = {.lex_state = 72}, - [2633] = {.lex_state = 8}, - [2634] = {.lex_state = 17}, - [2635] = {.lex_state = 23}, - [2636] = {.lex_state = 8}, - [2637] = {.lex_state = 23}, - [2638] = {.lex_state = 23}, - [2639] = {.lex_state = 8}, - [2640] = {.lex_state = 72}, - [2641] = {.lex_state = 23}, - [2642] = {.lex_state = 23}, - [2643] = {.lex_state = 23}, - [2644] = {.lex_state = 19}, - [2645] = {.lex_state = 23}, + [2623] = {.lex_state = 23}, + [2624] = {.lex_state = 17}, + [2625] = {.lex_state = 72}, + [2626] = {.lex_state = 72}, + [2627] = {.lex_state = 18}, + [2628] = {.lex_state = 17}, + [2629] = {.lex_state = 17}, + [2630] = {.lex_state = 23, .external_lex_state = 4}, + [2631] = {.lex_state = 23}, + [2632] = {.lex_state = 17}, + [2633] = {.lex_state = 23}, + [2634] = {.lex_state = 8}, + [2635] = {.lex_state = 8}, + [2636] = {.lex_state = 72}, + [2637] = {.lex_state = 72}, + [2638] = {.lex_state = 72}, + [2639] = {.lex_state = 23}, + [2640] = {.lex_state = 17}, + [2641] = {.lex_state = 17}, + [2642] = {.lex_state = 17}, + [2643] = {.lex_state = 17}, + [2644] = {.lex_state = 17}, + [2645] = {.lex_state = 72}, [2646] = {.lex_state = 17}, [2647] = {.lex_state = 17}, - [2648] = {.lex_state = 17}, - [2649] = {.lex_state = 17}, - [2650] = {.lex_state = 23}, - [2651] = {.lex_state = 23}, - [2652] = {.lex_state = 23, .external_lex_state = 4}, - [2653] = {.lex_state = 23}, - [2654] = {.lex_state = 72}, - [2655] = {.lex_state = 23}, - [2656] = {.lex_state = 72}, - [2657] = {.lex_state = 23}, - [2658] = {.lex_state = 23}, - [2659] = {.lex_state = 23}, - [2660] = {.lex_state = 23, .external_lex_state = 4}, - [2661] = {.lex_state = 72}, - [2662] = {.lex_state = 8}, - [2663] = {.lex_state = 8}, + [2648] = {.lex_state = 23}, + [2649] = {.lex_state = 72}, + [2650] = {.lex_state = 17}, + [2651] = {.lex_state = 72}, + [2652] = {.lex_state = 31}, + [2653] = {.lex_state = 17}, + [2654] = {.lex_state = 17}, + [2655] = {.lex_state = 17}, + [2656] = {.lex_state = 17}, + [2657] = {.lex_state = 17}, + [2658] = {.lex_state = 17}, + [2659] = {.lex_state = 19}, + [2660] = {.lex_state = 19}, + [2661] = {.lex_state = 19}, + [2662] = {.lex_state = 19}, + [2663] = {.lex_state = 17}, [2664] = {.lex_state = 8}, [2665] = {.lex_state = 8}, - [2666] = {.lex_state = 23}, - [2667] = {.lex_state = 8}, - [2668] = {.lex_state = 23, .external_lex_state = 4}, - [2669] = {.lex_state = 72}, - [2670] = {.lex_state = 72}, - [2671] = {.lex_state = 23}, - [2672] = {.lex_state = 19}, - [2673] = {.lex_state = 23}, - [2674] = {.lex_state = 23}, - [2675] = {.lex_state = 19}, - [2676] = {.lex_state = 8}, - [2677] = {.lex_state = 23, .external_lex_state = 4}, - [2678] = {.lex_state = 23}, - [2679] = {.lex_state = 72}, - [2680] = {.lex_state = 72}, - [2681] = {.lex_state = 23, .external_lex_state = 4}, - [2682] = {.lex_state = 72}, - [2683] = {.lex_state = 8}, - [2684] = {.lex_state = 8}, - [2685] = {.lex_state = 8}, - [2686] = {.lex_state = 8}, - [2687] = {.lex_state = 72}, - [2688] = {.lex_state = 72}, - [2689] = {.lex_state = 23, .external_lex_state = 4}, + [2666] = {.lex_state = 19}, + [2667] = {.lex_state = 19}, + [2668] = {.lex_state = 17}, + [2669] = {.lex_state = 19}, + [2670] = {.lex_state = 19}, + [2671] = {.lex_state = 17}, + [2672] = {.lex_state = 17}, + [2673] = {.lex_state = 17}, + [2674] = {.lex_state = 17}, + [2675] = {.lex_state = 17}, + [2676] = {.lex_state = 17}, + [2677] = {.lex_state = 17}, + [2678] = {.lex_state = 17}, + [2679] = {.lex_state = 17}, + [2680] = {.lex_state = 17}, + [2681] = {.lex_state = 17}, + [2682] = {.lex_state = 23}, + [2683] = {.lex_state = 72}, + [2684] = {.lex_state = 23}, + [2685] = {.lex_state = 23}, + [2686] = {.lex_state = 23, .external_lex_state = 4}, + [2687] = {.lex_state = 23}, + [2688] = {.lex_state = 23}, + [2689] = {.lex_state = 23}, [2690] = {.lex_state = 72}, - [2691] = {.lex_state = 23, .external_lex_state = 4}, - [2692] = {.lex_state = 8}, - [2693] = {.lex_state = 8}, + [2691] = {.lex_state = 18}, + [2692] = {.lex_state = 23}, + [2693] = {.lex_state = 72}, [2694] = {.lex_state = 23}, - [2695] = {.lex_state = 72}, - [2696] = {.lex_state = 8}, + [2695] = {.lex_state = 23}, + [2696] = {.lex_state = 23}, [2697] = {.lex_state = 23}, - [2698] = {.lex_state = 17}, - [2699] = {.lex_state = 23}, - [2700] = {.lex_state = 19}, - [2701] = {.lex_state = 72}, + [2698] = {.lex_state = 23, .external_lex_state = 4}, + [2699] = {.lex_state = 72}, + [2700] = {.lex_state = 8}, + [2701] = {.lex_state = 8}, [2702] = {.lex_state = 8}, [2703] = {.lex_state = 8}, - [2704] = {.lex_state = 19}, + [2704] = {.lex_state = 72}, [2705] = {.lex_state = 23}, - [2706] = {.lex_state = 19}, - [2707] = {.lex_state = 18}, - [2708] = {.lex_state = 5}, - [2709] = {.lex_state = 31}, - [2710] = {.lex_state = 72}, - [2711] = {.lex_state = 17}, - [2712] = {.lex_state = 23}, - [2713] = {.lex_state = 17}, - [2714] = {.lex_state = 19}, - [2715] = {.lex_state = 72}, - [2716] = {.lex_state = 8}, - [2717] = {.lex_state = 72}, - [2718] = {.lex_state = 17}, - [2719] = {.lex_state = 8}, + [2706] = {.lex_state = 8}, + [2707] = {.lex_state = 72}, + [2708] = {.lex_state = 8}, + [2709] = {.lex_state = 8}, + [2710] = {.lex_state = 23}, + [2711] = {.lex_state = 23}, + [2712] = {.lex_state = 33}, + [2713] = {.lex_state = 72}, + [2714] = {.lex_state = 72}, + [2715] = {.lex_state = 17}, + [2716] = {.lex_state = 23}, + [2717] = {.lex_state = 17}, + [2718] = {.lex_state = 72}, + [2719] = {.lex_state = 72}, [2720] = {.lex_state = 17}, - [2721] = {.lex_state = 72}, - [2722] = {.lex_state = 23}, + [2721] = {.lex_state = 17}, + [2722] = {.lex_state = 17}, [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 72}, - [2725] = {.lex_state = 8}, - [2726] = {.lex_state = 8}, - [2727] = {.lex_state = 8}, - [2728] = {.lex_state = 31}, - [2729] = {.lex_state = 17}, - [2730] = {.lex_state = 8}, - [2731] = {.lex_state = 17}, - [2732] = {.lex_state = 17}, + [2724] = {.lex_state = 17}, + [2725] = {.lex_state = 23}, + [2726] = {.lex_state = 23}, + [2727] = {.lex_state = 23, .external_lex_state = 4}, + [2728] = {.lex_state = 23}, + [2729] = {.lex_state = 23}, + [2730] = {.lex_state = 72}, + [2731] = {.lex_state = 23}, + [2732] = {.lex_state = 23}, [2733] = {.lex_state = 23}, - [2734] = {.lex_state = 72}, - [2735] = {.lex_state = 33}, - [2736] = {.lex_state = 23}, - [2737] = {.lex_state = 72}, - [2738] = {.lex_state = 17}, - [2739] = {.lex_state = 72}, - [2740] = {.lex_state = 72}, - [2741] = {.lex_state = 72}, - [2742] = {.lex_state = 23}, + [2734] = {.lex_state = 23, .external_lex_state = 4}, + [2735] = {.lex_state = 72}, + [2736] = {.lex_state = 8}, + [2737] = {.lex_state = 8}, + [2738] = {.lex_state = 8}, + [2739] = {.lex_state = 8}, + [2740] = {.lex_state = 8}, + [2741] = {.lex_state = 23}, + [2742] = {.lex_state = 31}, [2743] = {.lex_state = 23}, - [2744] = {.lex_state = 17}, - [2745] = {.lex_state = 31}, - [2746] = {.lex_state = 17}, - [2747] = {.lex_state = 17}, - [2748] = {.lex_state = 8}, - [2749] = {.lex_state = 17}, - [2750] = {.lex_state = 17}, + [2744] = {.lex_state = 23}, + [2745] = {.lex_state = 17}, + [2746] = {.lex_state = 23, .external_lex_state = 4}, + [2747] = {.lex_state = 23}, + [2748] = {.lex_state = 72}, + [2749] = {.lex_state = 23, .external_lex_state = 4}, + [2750] = {.lex_state = 72}, [2751] = {.lex_state = 23}, - [2752] = {.lex_state = 23}, - [2753] = {.lex_state = 17}, - [2754] = {.lex_state = 31}, - [2755] = {.lex_state = 23}, - [2756] = {.lex_state = 23}, + [2752] = {.lex_state = 8}, + [2753] = {.lex_state = 8}, + [2754] = {.lex_state = 8}, + [2755] = {.lex_state = 8}, + [2756] = {.lex_state = 17}, [2757] = {.lex_state = 72}, - [2758] = {.lex_state = 8}, - [2759] = {.lex_state = 5}, - [2760] = {.lex_state = 17}, - [2761] = {.lex_state = 17}, - [2762] = {.lex_state = 17}, - [2763] = {.lex_state = 17}, - [2764] = {.lex_state = 33}, - [2765] = {.lex_state = 8}, - [2766] = {.lex_state = 17}, - [2767] = {.lex_state = 17}, - [2768] = {.lex_state = 23}, - [2769] = {.lex_state = 19}, - [2770] = {.lex_state = 5}, - [2771] = {.lex_state = 17}, - [2772] = {.lex_state = 72}, - [2773] = {.lex_state = 17}, + [2758] = {.lex_state = 23, .external_lex_state = 4}, + [2759] = {.lex_state = 72}, + [2760] = {.lex_state = 23, .external_lex_state = 4}, + [2761] = {.lex_state = 8}, + [2762] = {.lex_state = 8}, + [2763] = {.lex_state = 31}, + [2764] = {.lex_state = 8}, + [2765] = {.lex_state = 72}, + [2766] = {.lex_state = 72}, + [2767] = {.lex_state = 8}, + [2768] = {.lex_state = 8}, + [2769] = {.lex_state = 8}, + [2770] = {.lex_state = 23}, + [2771] = {.lex_state = 23}, + [2772] = {.lex_state = 5}, + [2773] = {.lex_state = 31}, [2774] = {.lex_state = 17}, - [2775] = {.lex_state = 17}, + [2775] = {.lex_state = 72}, [2776] = {.lex_state = 72}, [2777] = {.lex_state = 17}, - [2778] = {.lex_state = 8}, - [2779] = {.lex_state = 8}, - [2780] = {.lex_state = 23}, + [2778] = {.lex_state = 17}, + [2779] = {.lex_state = 17}, + [2780] = {.lex_state = 72}, [2781] = {.lex_state = 23}, - [2782] = {.lex_state = 8}, + [2782] = {.lex_state = 72}, [2783] = {.lex_state = 8}, - [2784] = {.lex_state = 23, .external_lex_state = 4}, - [2785] = {.lex_state = 8}, + [2784] = {.lex_state = 31}, + [2785] = {.lex_state = 72}, [2786] = {.lex_state = 23}, [2787] = {.lex_state = 23}, [2788] = {.lex_state = 8}, [2789] = {.lex_state = 72}, - [2790] = {.lex_state = 17}, - [2791] = {.lex_state = 72}, - [2792] = {.lex_state = 72}, - [2793] = {.lex_state = 19}, - [2794] = {.lex_state = 72}, - [2795] = {.lex_state = 72}, - [2796] = {.lex_state = 17}, - [2797] = {.lex_state = 17}, + [2790] = {.lex_state = 33}, + [2791] = {.lex_state = 23}, + [2792] = {.lex_state = 23}, + [2793] = {.lex_state = 17}, + [2794] = {.lex_state = 5}, + [2795] = {.lex_state = 23}, + [2796] = {.lex_state = 23}, + [2797] = {.lex_state = 23}, [2798] = {.lex_state = 72}, - [2799] = {.lex_state = 72}, - [2800] = {.lex_state = 72}, - [2801] = {.lex_state = 72}, - [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 72}, - [2804] = {.lex_state = 72}, - [2805] = {.lex_state = 72}, - [2806] = {.lex_state = 72}, - [2807] = {.lex_state = 72}, - [2808] = {.lex_state = 17}, - [2809] = {.lex_state = 72}, - [2810] = {.lex_state = 72}, - [2811] = {.lex_state = 72}, - [2812] = {.lex_state = 72}, - [2813] = {.lex_state = 72}, - [2814] = {.lex_state = 72}, - [2815] = {.lex_state = 72}, - [2816] = {.lex_state = 72}, - [2817] = {.lex_state = 72}, - [2818] = {.lex_state = 72}, - [2819] = {.lex_state = 72}, - [2820] = {.lex_state = 72}, - [2821] = {.lex_state = 72}, - [2822] = {.lex_state = 72}, + [2799] = {.lex_state = 23}, + [2800] = {.lex_state = 31}, + [2801] = {.lex_state = 23}, + [2802] = {.lex_state = 23}, + [2803] = {.lex_state = 5}, + [2804] = {.lex_state = 17}, + [2805] = {.lex_state = 33}, + [2806] = {.lex_state = 8}, + [2807] = {.lex_state = 5}, + [2808] = {.lex_state = 23, .external_lex_state = 4}, + [2809] = {.lex_state = 17}, + [2810] = {.lex_state = 23}, + [2811] = {.lex_state = 17}, + [2812] = {.lex_state = 31}, + [2813] = {.lex_state = 8}, + [2814] = {.lex_state = 17}, + [2815] = {.lex_state = 23}, + [2816] = {.lex_state = 17}, + [2817] = {.lex_state = 8}, + [2818] = {.lex_state = 8}, + [2819] = {.lex_state = 31}, + [2820] = {.lex_state = 8}, + [2821] = {.lex_state = 8}, + [2822] = {.lex_state = 8}, [2823] = {.lex_state = 72}, [2824] = {.lex_state = 72}, [2825] = {.lex_state = 72}, [2826] = {.lex_state = 72}, - [2827] = {.lex_state = 17}, - [2828] = {.lex_state = 17}, - [2829] = {.lex_state = 72}, + [2827] = {.lex_state = 72}, + [2828] = {.lex_state = 72}, + [2829] = {.lex_state = 19}, [2830] = {.lex_state = 72}, [2831] = {.lex_state = 72}, [2832] = {.lex_state = 72}, [2833] = {.lex_state = 72}, [2834] = {.lex_state = 72}, - [2835] = {.lex_state = 17}, + [2835] = {.lex_state = 72}, [2836] = {.lex_state = 72}, [2837] = {.lex_state = 72}, [2838] = {.lex_state = 72}, [2839] = {.lex_state = 72}, [2840] = {.lex_state = 72}, - [2841] = {.lex_state = 20}, - [2842] = {.lex_state = 72}, - [2843] = {.lex_state = 72}, - [2844] = {.lex_state = 72}, + [2841] = {.lex_state = 72}, + [2842] = {.lex_state = 19}, + [2843] = {.lex_state = 21}, + [2844] = {.lex_state = 19}, [2845] = {.lex_state = 72}, [2846] = {.lex_state = 72}, [2847] = {.lex_state = 72}, @@ -13129,625 +13200,625 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2850] = {.lex_state = 72}, [2851] = {.lex_state = 72}, [2852] = {.lex_state = 72}, - [2853] = {.lex_state = 8}, + [2853] = {.lex_state = 72}, [2854] = {.lex_state = 72}, [2855] = {.lex_state = 72}, [2856] = {.lex_state = 72}, [2857] = {.lex_state = 72}, [2858] = {.lex_state = 72}, - [2859] = {.lex_state = 72}, - [2860] = {.lex_state = 72}, + [2859] = {.lex_state = 19}, + [2860] = {.lex_state = 17}, [2861] = {.lex_state = 72}, [2862] = {.lex_state = 72}, [2863] = {.lex_state = 72}, [2864] = {.lex_state = 72}, [2865] = {.lex_state = 72}, - [2866] = {.lex_state = 72}, + [2866] = {.lex_state = 19}, [2867] = {.lex_state = 72}, - [2868] = {.lex_state = 20}, - [2869] = {.lex_state = 72}, + [2868] = {.lex_state = 17}, + [2869] = {.lex_state = 17}, [2870] = {.lex_state = 72}, [2871] = {.lex_state = 72}, - [2872] = {.lex_state = 19}, - [2873] = {.lex_state = 19}, - [2874] = {.lex_state = 72}, + [2872] = {.lex_state = 72}, + [2873] = {.lex_state = 72}, + [2874] = {.lex_state = 17}, [2875] = {.lex_state = 72}, - [2876] = {.lex_state = 17}, + [2876] = {.lex_state = 72}, [2877] = {.lex_state = 72}, - [2878] = {.lex_state = 72}, + [2878] = {.lex_state = 17}, [2879] = {.lex_state = 72}, [2880] = {.lex_state = 72}, [2881] = {.lex_state = 72}, [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 72}, - [2884] = {.lex_state = 19}, - [2885] = {.lex_state = 19}, - [2886] = {.lex_state = 23}, + [2883] = {.lex_state = 21}, + [2884] = {.lex_state = 72}, + [2885] = {.lex_state = 72}, + [2886] = {.lex_state = 72}, [2887] = {.lex_state = 72}, [2888] = {.lex_state = 72}, [2889] = {.lex_state = 72}, - [2890] = {.lex_state = 72}, + [2890] = {.lex_state = 17}, [2891] = {.lex_state = 72}, - [2892] = {.lex_state = 72}, + [2892] = {.lex_state = 17}, [2893] = {.lex_state = 72}, - [2894] = {.lex_state = 72}, - [2895] = {.lex_state = 19}, + [2894] = {.lex_state = 21}, + [2895] = {.lex_state = 72}, [2896] = {.lex_state = 72}, [2897] = {.lex_state = 72}, [2898] = {.lex_state = 72}, - [2899] = {.lex_state = 19}, + [2899] = {.lex_state = 72}, [2900] = {.lex_state = 72}, - [2901] = {.lex_state = 19}, + [2901] = {.lex_state = 72}, [2902] = {.lex_state = 72}, - [2903] = {.lex_state = 19}, + [2903] = {.lex_state = 72}, [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 19}, + [2905] = {.lex_state = 72}, [2906] = {.lex_state = 72}, - [2907] = {.lex_state = 19}, - [2908] = {.lex_state = 19}, + [2907] = {.lex_state = 72}, + [2908] = {.lex_state = 72}, [2909] = {.lex_state = 72}, [2910] = {.lex_state = 72}, - [2911] = {.lex_state = 19}, - [2912] = {.lex_state = 17}, - [2913] = {.lex_state = 20}, + [2911] = {.lex_state = 72}, + [2912] = {.lex_state = 72}, + [2913] = {.lex_state = 72}, [2914] = {.lex_state = 72}, - [2915] = {.lex_state = 72}, - [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 72}, + [2915] = {.lex_state = 17}, + [2916] = {.lex_state = 19}, + [2917] = {.lex_state = 19}, [2918] = {.lex_state = 72}, [2919] = {.lex_state = 72}, - [2920] = {.lex_state = 72}, + [2920] = {.lex_state = 17}, [2921] = {.lex_state = 72}, - [2922] = {.lex_state = 72}, - [2923] = {.lex_state = 72}, + [2922] = {.lex_state = 19}, + [2923] = {.lex_state = 17}, [2924] = {.lex_state = 72}, [2925] = {.lex_state = 72}, [2926] = {.lex_state = 72}, - [2927] = {.lex_state = 72}, + [2927] = {.lex_state = 19}, [2928] = {.lex_state = 72}, [2929] = {.lex_state = 72}, [2930] = {.lex_state = 72}, - [2931] = {.lex_state = 17}, - [2932] = {.lex_state = 20}, - [2933] = {.lex_state = 72}, + [2931] = {.lex_state = 19}, + [2932] = {.lex_state = 19}, + [2933] = {.lex_state = 19}, [2934] = {.lex_state = 72}, [2935] = {.lex_state = 72}, - [2936] = {.lex_state = 19}, + [2936] = {.lex_state = 72}, [2937] = {.lex_state = 72}, [2938] = {.lex_state = 72}, - [2939] = {.lex_state = 19}, - [2940] = {.lex_state = 8}, - [2941] = {.lex_state = 72}, + [2939] = {.lex_state = 23, .external_lex_state = 4}, + [2940] = {.lex_state = 19}, + [2941] = {.lex_state = 23}, [2942] = {.lex_state = 17}, - [2943] = {.lex_state = 72}, + [2943] = {.lex_state = 23}, [2944] = {.lex_state = 72}, [2945] = {.lex_state = 72}, - [2946] = {.lex_state = 72}, - [2947] = {.lex_state = 8}, - [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 31}, + [2946] = {.lex_state = 19}, + [2947] = {.lex_state = 72}, + [2948] = {.lex_state = 17}, + [2949] = {.lex_state = 72}, [2950] = {.lex_state = 72}, [2951] = {.lex_state = 72}, [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 72}, - [2954] = {.lex_state = 72}, + [2953] = {.lex_state = 19}, + [2954] = {.lex_state = 19}, [2955] = {.lex_state = 72}, [2956] = {.lex_state = 72}, [2957] = {.lex_state = 72}, [2958] = {.lex_state = 72}, [2959] = {.lex_state = 72}, [2960] = {.lex_state = 72}, - [2961] = {.lex_state = 8}, + [2961] = {.lex_state = 19}, [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 = 72}, - [2969] = {.lex_state = 72}, + [2966] = {.lex_state = 23}, + [2967] = {.lex_state = 17}, + [2968] = {.lex_state = 19}, + [2969] = {.lex_state = 19}, [2970] = {.lex_state = 72}, - [2971] = {.lex_state = 72}, + [2971] = {.lex_state = 17}, [2972] = {.lex_state = 72}, [2973] = {.lex_state = 72}, - [2974] = {.lex_state = 72}, - [2975] = {.lex_state = 72}, - [2976] = {.lex_state = 72}, - [2977] = {.lex_state = 17}, + [2974] = {.lex_state = 19}, + [2975] = {.lex_state = 8}, + [2976] = {.lex_state = 17}, + [2977] = {.lex_state = 19}, [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 17}, - [2981] = {.lex_state = 8}, + [2980] = {.lex_state = 72}, + [2981] = {.lex_state = 72}, [2982] = {.lex_state = 72}, - [2983] = {.lex_state = 72}, + [2983] = {.lex_state = 8}, [2984] = {.lex_state = 72}, - [2985] = {.lex_state = 72}, - [2986] = {.lex_state = 17}, + [2985] = {.lex_state = 17}, + [2986] = {.lex_state = 19}, [2987] = {.lex_state = 72}, [2988] = {.lex_state = 72}, [2989] = {.lex_state = 72}, [2990] = {.lex_state = 72}, - [2991] = {.lex_state = 72}, + [2991] = {.lex_state = 19}, [2992] = {.lex_state = 72}, [2993] = {.lex_state = 72}, [2994] = {.lex_state = 72}, - [2995] = {.lex_state = 17}, + [2995] = {.lex_state = 72}, [2996] = {.lex_state = 72}, [2997] = {.lex_state = 72}, - [2998] = {.lex_state = 19}, - [2999] = {.lex_state = 19}, - [3000] = {.lex_state = 8}, - [3001] = {.lex_state = 19}, - [3002] = {.lex_state = 19}, - [3003] = {.lex_state = 19}, - [3004] = {.lex_state = 19}, - [3005] = {.lex_state = 72}, - [3006] = {.lex_state = 72}, + [2998] = {.lex_state = 72}, + [2999] = {.lex_state = 72}, + [3000] = {.lex_state = 72}, + [3001] = {.lex_state = 72}, + [3002] = {.lex_state = 72}, + [3003] = {.lex_state = 31}, + [3004] = {.lex_state = 17}, + [3005] = {.lex_state = 19}, + [3006] = {.lex_state = 19}, [3007] = {.lex_state = 72}, [3008] = {.lex_state = 72}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 72}, - [3011] = {.lex_state = 72}, + [3010] = {.lex_state = 8}, + [3011] = {.lex_state = 19}, [3012] = {.lex_state = 72}, [3013] = {.lex_state = 72}, - [3014] = {.lex_state = 23, .external_lex_state = 4}, + [3014] = {.lex_state = 8}, [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 19}, - [3017] = {.lex_state = 19}, + [3016] = {.lex_state = 72}, + [3017] = {.lex_state = 72}, [3018] = {.lex_state = 72}, [3019] = {.lex_state = 72}, - [3020] = {.lex_state = 19}, + [3020] = {.lex_state = 17}, [3021] = {.lex_state = 72}, - [3022] = {.lex_state = 72}, - [3023] = {.lex_state = 72}, - [3024] = {.lex_state = 72}, - [3025] = {.lex_state = 8}, + [3022] = {.lex_state = 19}, + [3023] = {.lex_state = 17}, + [3024] = {.lex_state = 17}, + [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, [3027] = {.lex_state = 72}, [3028] = {.lex_state = 72}, - [3029] = {.lex_state = 31}, + [3029] = {.lex_state = 72}, [3030] = {.lex_state = 72}, - [3031] = {.lex_state = 19}, - [3032] = {.lex_state = 17}, + [3031] = {.lex_state = 72}, + [3032] = {.lex_state = 72}, [3033] = {.lex_state = 17}, - [3034] = {.lex_state = 17}, - [3035] = {.lex_state = 23}, + [3034] = {.lex_state = 72}, + [3035] = {.lex_state = 72}, [3036] = {.lex_state = 72}, - [3037] = {.lex_state = 19}, + [3037] = {.lex_state = 72}, [3038] = {.lex_state = 72}, [3039] = {.lex_state = 72}, - [3040] = {.lex_state = 72}, + [3040] = {.lex_state = 19}, [3041] = {.lex_state = 72}, - [3042] = {.lex_state = 19}, - [3043] = {.lex_state = 19}, - [3044] = {.lex_state = 19}, - [3045] = {.lex_state = 19}, - [3046] = {.lex_state = 19}, + [3042] = {.lex_state = 72}, + [3043] = {.lex_state = 72}, + [3044] = {.lex_state = 21}, + [3045] = {.lex_state = 72}, + [3046] = {.lex_state = 72}, [3047] = {.lex_state = 72}, - [3048] = {.lex_state = 17}, - [3049] = {.lex_state = 17}, - [3050] = {.lex_state = 19}, - [3051] = {.lex_state = 19}, - [3052] = {.lex_state = 23}, - [3053] = {.lex_state = 23}, + [3048] = {.lex_state = 72}, + [3049] = {.lex_state = 72}, + [3050] = {.lex_state = 72}, + [3051] = {.lex_state = 72}, + [3052] = {.lex_state = 8}, + [3053] = {.lex_state = 72}, [3054] = {.lex_state = 72}, [3055] = {.lex_state = 72}, - [3056] = {.lex_state = 17}, + [3056] = {.lex_state = 72}, [3057] = {.lex_state = 72}, [3058] = {.lex_state = 19}, [3059] = {.lex_state = 72}, [3060] = {.lex_state = 72}, - [3061] = {.lex_state = 17}, - [3062] = {.lex_state = 72}, - [3063] = {.lex_state = 8}, - [3064] = {.lex_state = 8}, + [3061] = {.lex_state = 19}, + [3062] = {.lex_state = 19}, + [3063] = {.lex_state = 19}, + [3064] = {.lex_state = 72}, [3065] = {.lex_state = 72}, - [3066] = {.lex_state = 72}, + [3066] = {.lex_state = 19}, [3067] = {.lex_state = 19}, - [3068] = {.lex_state = 17}, + [3068] = {.lex_state = 72}, [3069] = {.lex_state = 72}, [3070] = {.lex_state = 72}, - [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 19}, - [3073] = {.lex_state = 19}, + [3071] = {.lex_state = 8}, + [3072] = {.lex_state = 23}, + [3073] = {.lex_state = 17}, [3074] = {.lex_state = 72}, [3075] = {.lex_state = 72}, - [3076] = {.lex_state = 72}, - [3077] = {.lex_state = 72}, + [3076] = {.lex_state = 8}, + [3077] = {.lex_state = 8}, [3078] = {.lex_state = 72}, - [3079] = {.lex_state = 72}, + [3079] = {.lex_state = 17}, [3080] = {.lex_state = 72}, [3081] = {.lex_state = 72}, [3082] = {.lex_state = 72}, [3083] = {.lex_state = 72}, - [3084] = {.lex_state = 72}, - [3085] = {.lex_state = 8}, + [3084] = {.lex_state = 17}, + [3085] = {.lex_state = 19}, [3086] = {.lex_state = 72}, [3087] = {.lex_state = 72}, - [3088] = {.lex_state = 8}, - [3089] = {.lex_state = 17}, - [3090] = {.lex_state = 8}, + [3088] = {.lex_state = 72}, + [3089] = {.lex_state = 72}, + [3090] = {.lex_state = 72}, [3091] = {.lex_state = 72}, - [3092] = {.lex_state = 8}, - [3093] = {.lex_state = 17}, + [3092] = {.lex_state = 72}, + [3093] = {.lex_state = 72}, [3094] = {.lex_state = 72}, - [3095] = {.lex_state = 20}, + [3095] = {.lex_state = 72}, [3096] = {.lex_state = 72}, - [3097] = {.lex_state = 8}, - [3098] = {.lex_state = 7}, + [3097] = {.lex_state = 72}, + [3098] = {.lex_state = 72}, [3099] = {.lex_state = 72}, [3100] = {.lex_state = 72}, - [3101] = {.lex_state = 17}, + [3101] = {.lex_state = 72}, [3102] = {.lex_state = 72}, - [3103] = {.lex_state = 17}, + [3103] = {.lex_state = 72}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, - [3106] = {.lex_state = 72}, - [3107] = {.lex_state = 72}, + [3106] = {.lex_state = 8}, + [3107] = {.lex_state = 19}, [3108] = {.lex_state = 72}, - [3109] = {.lex_state = 17}, - [3110] = {.lex_state = 17}, - [3111] = {.lex_state = 17}, - [3112] = {.lex_state = 17}, + [3109] = {.lex_state = 72}, + [3110] = {.lex_state = 72}, + [3111] = {.lex_state = 72}, + [3112] = {.lex_state = 31}, [3113] = {.lex_state = 72}, [3114] = {.lex_state = 17}, - [3115] = {.lex_state = 72}, + [3115] = {.lex_state = 8}, [3116] = {.lex_state = 72}, - [3117] = {.lex_state = 17}, - [3118] = {.lex_state = 72}, - [3119] = {.lex_state = 31}, + [3117] = {.lex_state = 72}, + [3118] = {.lex_state = 8}, + [3119] = {.lex_state = 8}, [3120] = {.lex_state = 72}, - [3121] = {.lex_state = 31}, - [3122] = {.lex_state = 17}, + [3121] = {.lex_state = 8}, + [3122] = {.lex_state = 72}, [3123] = {.lex_state = 17}, [3124] = {.lex_state = 17}, - [3125] = {.lex_state = 17}, - [3126] = {.lex_state = 31}, - [3127] = {.lex_state = 17}, + [3125] = {.lex_state = 8}, + [3126] = {.lex_state = 72}, + [3127] = {.lex_state = 21}, [3128] = {.lex_state = 17}, - [3129] = {.lex_state = 17}, - [3130] = {.lex_state = 17}, - [3131] = {.lex_state = 23}, + [3129] = {.lex_state = 72}, + [3130] = {.lex_state = 72}, + [3131] = {.lex_state = 19}, [3132] = {.lex_state = 72}, [3133] = {.lex_state = 72}, - [3134] = {.lex_state = 17}, + [3134] = {.lex_state = 72}, [3135] = {.lex_state = 72}, [3136] = {.lex_state = 72}, - [3137] = {.lex_state = 72}, + [3137] = {.lex_state = 17}, [3138] = {.lex_state = 72}, - [3139] = {.lex_state = 20}, - [3140] = {.lex_state = 72}, - [3141] = {.lex_state = 17}, - [3142] = {.lex_state = 17}, + [3139] = {.lex_state = 72}, + [3140] = {.lex_state = 17}, + [3141] = {.lex_state = 72}, + [3142] = {.lex_state = 72}, [3143] = {.lex_state = 72}, [3144] = {.lex_state = 72}, [3145] = {.lex_state = 72}, - [3146] = {.lex_state = 72}, - [3147] = {.lex_state = 31}, - [3148] = {.lex_state = 72}, - [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 17}, - [3151] = {.lex_state = 72}, - [3152] = {.lex_state = 17}, + [3146] = {.lex_state = 17}, + [3147] = {.lex_state = 17}, + [3148] = {.lex_state = 17}, + [3149] = {.lex_state = 17}, + [3150] = {.lex_state = 72}, + [3151] = {.lex_state = 17}, + [3152] = {.lex_state = 72}, [3153] = {.lex_state = 72}, - [3154] = {.lex_state = 17}, - [3155] = {.lex_state = 72, .external_lex_state = 5}, + [3154] = {.lex_state = 72}, + [3155] = {.lex_state = 72}, [3156] = {.lex_state = 72}, [3157] = {.lex_state = 72}, - [3158] = {.lex_state = 72}, - [3159] = {.lex_state = 72}, + [3158] = {.lex_state = 17}, + [3159] = {.lex_state = 17}, [3160] = {.lex_state = 17}, - [3161] = {.lex_state = 72}, - [3162] = {.lex_state = 72}, + [3161] = {.lex_state = 17}, + [3162] = {.lex_state = 17}, [3163] = {.lex_state = 17}, - [3164] = {.lex_state = 72}, + [3164] = {.lex_state = 17}, [3165] = {.lex_state = 17}, [3166] = {.lex_state = 72}, [3167] = {.lex_state = 72}, [3168] = {.lex_state = 72}, - [3169] = {.lex_state = 17}, + [3169] = {.lex_state = 72, .external_lex_state = 5}, [3170] = {.lex_state = 17}, [3171] = {.lex_state = 72}, - [3172] = {.lex_state = 72}, - [3173] = {.lex_state = 17}, - [3174] = {.lex_state = 72}, - [3175] = {.lex_state = 72}, + [3172] = {.lex_state = 17}, + [3173] = {.lex_state = 72}, + [3174] = {.lex_state = 17}, + [3175] = {.lex_state = 17}, [3176] = {.lex_state = 17}, - [3177] = {.lex_state = 17}, - [3178] = {.lex_state = 17}, + [3177] = {.lex_state = 72}, + [3178] = {.lex_state = 72}, [3179] = {.lex_state = 17}, - [3180] = {.lex_state = 17}, - [3181] = {.lex_state = 17}, - [3182] = {.lex_state = 72}, - [3183] = {.lex_state = 23, .external_lex_state = 6}, + [3180] = {.lex_state = 72}, + [3181] = {.lex_state = 72}, + [3182] = {.lex_state = 17}, + [3183] = {.lex_state = 17}, [3184] = {.lex_state = 72}, - [3185] = {.lex_state = 23, .external_lex_state = 6}, + [3185] = {.lex_state = 17}, [3186] = {.lex_state = 72}, [3187] = {.lex_state = 72}, [3188] = {.lex_state = 72}, - [3189] = {.lex_state = 17}, - [3190] = {.lex_state = 17}, + [3189] = {.lex_state = 31}, + [3190] = {.lex_state = 72}, [3191] = {.lex_state = 72}, [3192] = {.lex_state = 72}, [3193] = {.lex_state = 72}, [3194] = {.lex_state = 72}, [3195] = {.lex_state = 72, .external_lex_state = 5}, - [3196] = {.lex_state = 17}, + [3196] = {.lex_state = 72}, [3197] = {.lex_state = 72}, [3198] = {.lex_state = 72}, [3199] = {.lex_state = 72}, - [3200] = {.lex_state = 17}, + [3200] = {.lex_state = 72}, [3201] = {.lex_state = 17}, [3202] = {.lex_state = 72}, - [3203] = {.lex_state = 72}, - [3204] = {.lex_state = 17}, - [3205] = {.lex_state = 17}, - [3206] = {.lex_state = 72}, - [3207] = {.lex_state = 17}, + [3203] = {.lex_state = 17}, + [3204] = {.lex_state = 7}, + [3205] = {.lex_state = 72}, + [3206] = {.lex_state = 7}, + [3207] = {.lex_state = 72}, [3208] = {.lex_state = 17}, - [3209] = {.lex_state = 72}, - [3210] = {.lex_state = 31}, + [3209] = {.lex_state = 17}, + [3210] = {.lex_state = 72}, [3211] = {.lex_state = 72}, [3212] = {.lex_state = 72}, [3213] = {.lex_state = 72}, - [3214] = {.lex_state = 17}, - [3215] = {.lex_state = 72}, + [3214] = {.lex_state = 72}, + [3215] = {.lex_state = 17}, [3216] = {.lex_state = 72}, - [3217] = {.lex_state = 72}, - [3218] = {.lex_state = 17}, + [3217] = {.lex_state = 17}, + [3218] = {.lex_state = 72}, [3219] = {.lex_state = 17}, [3220] = {.lex_state = 72}, [3221] = {.lex_state = 17}, [3222] = {.lex_state = 17}, - [3223] = {.lex_state = 17}, + [3223] = {.lex_state = 72}, [3224] = {.lex_state = 72}, [3225] = {.lex_state = 72}, [3226] = {.lex_state = 72}, - [3227] = {.lex_state = 7}, - [3228] = {.lex_state = 23, .external_lex_state = 6}, - [3229] = {.lex_state = 17}, - [3230] = {.lex_state = 72}, - [3231] = {.lex_state = 17}, - [3232] = {.lex_state = 17}, - [3233] = {.lex_state = 17}, - [3234] = {.lex_state = 17}, + [3227] = {.lex_state = 72}, + [3228] = {.lex_state = 72}, + [3229] = {.lex_state = 72}, + [3230] = {.lex_state = 17}, + [3231] = {.lex_state = 72}, + [3232] = {.lex_state = 72}, + [3233] = {.lex_state = 72}, + [3234] = {.lex_state = 72}, [3235] = {.lex_state = 72}, - [3236] = {.lex_state = 72}, - [3237] = {.lex_state = 72}, - [3238] = {.lex_state = 17}, - [3239] = {.lex_state = 17}, - [3240] = {.lex_state = 17}, + [3236] = {.lex_state = 17}, + [3237] = {.lex_state = 17}, + [3238] = {.lex_state = 72}, + [3239] = {.lex_state = 72}, + [3240] = {.lex_state = 72}, [3241] = {.lex_state = 17}, [3242] = {.lex_state = 17}, - [3243] = {.lex_state = 17}, + [3243] = {.lex_state = 72}, [3244] = {.lex_state = 17}, [3245] = {.lex_state = 17}, [3246] = {.lex_state = 17}, [3247] = {.lex_state = 17}, [3248] = {.lex_state = 17}, - [3249] = {.lex_state = 17}, + [3249] = {.lex_state = 8}, [3250] = {.lex_state = 17}, - [3251] = {.lex_state = 17}, - [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 17}, + [3251] = {.lex_state = 72}, + [3252] = {.lex_state = 72}, + [3253] = {.lex_state = 72}, [3254] = {.lex_state = 72}, [3255] = {.lex_state = 72}, - [3256] = {.lex_state = 72}, + [3256] = {.lex_state = 17}, [3257] = {.lex_state = 72}, - [3258] = {.lex_state = 72}, - [3259] = {.lex_state = 72}, - [3260] = {.lex_state = 72}, - [3261] = {.lex_state = 72}, - [3262] = {.lex_state = 72}, + [3258] = {.lex_state = 17}, + [3259] = {.lex_state = 17}, + [3260] = {.lex_state = 17}, + [3261] = {.lex_state = 17}, + [3262] = {.lex_state = 17}, [3263] = {.lex_state = 72}, - [3264] = {.lex_state = 17}, - [3265] = {.lex_state = 17}, - [3266] = {.lex_state = 72}, - [3267] = {.lex_state = 72}, + [3264] = {.lex_state = 72}, + [3265] = {.lex_state = 72}, + [3266] = {.lex_state = 23, .external_lex_state = 6}, + [3267] = {.lex_state = 17}, [3268] = {.lex_state = 72}, - [3269] = {.lex_state = 72}, + [3269] = {.lex_state = 17}, [3270] = {.lex_state = 17}, [3271] = {.lex_state = 17}, - [3272] = {.lex_state = 72}, + [3272] = {.lex_state = 17}, [3273] = {.lex_state = 72}, [3274] = {.lex_state = 17}, [3275] = {.lex_state = 72}, [3276] = {.lex_state = 17}, - [3277] = {.lex_state = 72}, + [3277] = {.lex_state = 17}, [3278] = {.lex_state = 17}, - [3279] = {.lex_state = 72}, - [3280] = {.lex_state = 72}, - [3281] = {.lex_state = 72}, - [3282] = {.lex_state = 72}, - [3283] = {.lex_state = 8}, - [3284] = {.lex_state = 72}, - [3285] = {.lex_state = 72}, - [3286] = {.lex_state = 72}, - [3287] = {.lex_state = 72}, + [3279] = {.lex_state = 17}, + [3280] = {.lex_state = 17}, + [3281] = {.lex_state = 17}, + [3282] = {.lex_state = 17}, + [3283] = {.lex_state = 17}, + [3284] = {.lex_state = 17}, + [3285] = {.lex_state = 17}, + [3286] = {.lex_state = 17}, + [3287] = {.lex_state = 17}, [3288] = {.lex_state = 17}, - [3289] = {.lex_state = 72}, - [3290] = {.lex_state = 72}, + [3289] = {.lex_state = 17}, + [3290] = {.lex_state = 17}, [3291] = {.lex_state = 17}, [3292] = {.lex_state = 17}, - [3293] = {.lex_state = 72}, - [3294] = {.lex_state = 17}, - [3295] = {.lex_state = 17}, - [3296] = {.lex_state = 17}, + [3293] = {.lex_state = 31}, + [3294] = {.lex_state = 31}, + [3295] = {.lex_state = 21}, + [3296] = {.lex_state = 72}, [3297] = {.lex_state = 17}, [3298] = {.lex_state = 72}, [3299] = {.lex_state = 72}, [3300] = {.lex_state = 72}, - [3301] = {.lex_state = 72}, - [3302] = {.lex_state = 72}, - [3303] = {.lex_state = 17}, + [3301] = {.lex_state = 17}, + [3302] = {.lex_state = 17}, + [3303] = {.lex_state = 72}, [3304] = {.lex_state = 72}, [3305] = {.lex_state = 72}, [3306] = {.lex_state = 72}, - [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 17}, - [3309] = {.lex_state = 72}, + [3307] = {.lex_state = 17}, + [3308] = {.lex_state = 72}, + [3309] = {.lex_state = 17}, [3310] = {.lex_state = 72}, [3311] = {.lex_state = 72}, - [3312] = {.lex_state = 17}, + [3312] = {.lex_state = 72}, [3313] = {.lex_state = 72}, [3314] = {.lex_state = 72}, - [3315] = {.lex_state = 17}, + [3315] = {.lex_state = 31}, [3316] = {.lex_state = 72}, [3317] = {.lex_state = 17}, - [3318] = {.lex_state = 72}, + [3318] = {.lex_state = 23}, [3319] = {.lex_state = 72}, - [3320] = {.lex_state = 72}, - [3321] = {.lex_state = 72}, - [3322] = {.lex_state = 8}, + [3320] = {.lex_state = 31}, + [3321] = {.lex_state = 8}, + [3322] = {.lex_state = 23, .external_lex_state = 6}, [3323] = {.lex_state = 72}, [3324] = {.lex_state = 72}, - [3325] = {.lex_state = 17}, + [3325] = {.lex_state = 72}, [3326] = {.lex_state = 72}, - [3327] = {.lex_state = 17}, + [3327] = {.lex_state = 72}, [3328] = {.lex_state = 72}, [3329] = {.lex_state = 17}, - [3330] = {.lex_state = 17}, + [3330] = {.lex_state = 72}, [3331] = {.lex_state = 72}, [3332] = {.lex_state = 72}, [3333] = {.lex_state = 72}, - [3334] = {.lex_state = 23}, - [3335] = {.lex_state = 17}, - [3336] = {.lex_state = 72}, + [3334] = {.lex_state = 72}, + [3335] = {.lex_state = 72}, + [3336] = {.lex_state = 31}, [3337] = {.lex_state = 72}, - [3338] = {.lex_state = 72}, + [3338] = {.lex_state = 17}, [3339] = {.lex_state = 72}, [3340] = {.lex_state = 72}, [3341] = {.lex_state = 72}, [3342] = {.lex_state = 72}, - [3343] = {.lex_state = 72}, - [3344] = {.lex_state = 17}, - [3345] = {.lex_state = 72}, + [3343] = {.lex_state = 17}, + [3344] = {.lex_state = 72}, + [3345] = {.lex_state = 17}, [3346] = {.lex_state = 72}, [3347] = {.lex_state = 72}, [3348] = {.lex_state = 72}, - [3349] = {.lex_state = 17}, + [3349] = {.lex_state = 72}, [3350] = {.lex_state = 72}, [3351] = {.lex_state = 72}, - [3352] = {.lex_state = 72}, + [3352] = {.lex_state = 17}, [3353] = {.lex_state = 72}, - [3354] = {.lex_state = 17}, + [3354] = {.lex_state = 23}, [3355] = {.lex_state = 72}, - [3356] = {.lex_state = 17}, - [3357] = {.lex_state = 17}, - [3358] = {.lex_state = 72}, + [3356] = {.lex_state = 72}, + [3357] = {.lex_state = 72}, + [3358] = {.lex_state = 17}, [3359] = {.lex_state = 72}, [3360] = {.lex_state = 17}, [3361] = {.lex_state = 72}, - [3362] = {.lex_state = 17}, + [3362] = {.lex_state = 72}, [3363] = {.lex_state = 72}, [3364] = {.lex_state = 72}, - [3365] = {.lex_state = 72}, - [3366] = {.lex_state = 17}, - [3367] = {.lex_state = 17}, - [3368] = {.lex_state = 31}, - [3369] = {.lex_state = 17}, + [3365] = {.lex_state = 23, .external_lex_state = 6}, + [3366] = {.lex_state = 72}, + [3367] = {.lex_state = 72}, + [3368] = {.lex_state = 72}, + [3369] = {.lex_state = 72}, [3370] = {.lex_state = 72}, - [3371] = {.lex_state = 72}, - [3372] = {.lex_state = 17}, - [3373] = {.lex_state = 17}, + [3371] = {.lex_state = 17}, + [3372] = {.lex_state = 72}, + [3373] = {.lex_state = 72}, [3374] = {.lex_state = 72}, [3375] = {.lex_state = 72}, - [3376] = {.lex_state = 17}, - [3377] = {.lex_state = 17}, - [3378] = {.lex_state = 17}, + [3376] = {.lex_state = 72}, + [3377] = {.lex_state = 72}, + [3378] = {.lex_state = 72}, [3379] = {.lex_state = 17}, - [3380] = {.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}, [3386] = {.lex_state = 17}, - [3387] = {.lex_state = 17}, + [3387] = {.lex_state = 72}, [3388] = {.lex_state = 72}, - [3389] = {.lex_state = 72}, - [3390] = {.lex_state = 72}, - [3391] = {.lex_state = 73}, + [3389] = {.lex_state = 17}, + [3390] = {.lex_state = 17}, + [3391] = {.lex_state = 17}, [3392] = {.lex_state = 17}, - [3393] = {.lex_state = 17}, + [3393] = {.lex_state = 72}, [3394] = {.lex_state = 17}, - [3395] = {.lex_state = 17}, - [3396] = {.lex_state = 72}, - [3397] = {.lex_state = 17}, + [3395] = {.lex_state = 72}, + [3396] = {.lex_state = 17}, + [3397] = {.lex_state = 72}, [3398] = {.lex_state = 72}, - [3399] = {.lex_state = 72, .external_lex_state = 7}, + [3399] = {.lex_state = 17}, [3400] = {.lex_state = 72}, - [3401] = {.lex_state = 72}, + [3401] = {.lex_state = 17}, [3402] = {.lex_state = 72}, - [3403] = {.lex_state = 72}, + [3403] = {.lex_state = 17}, [3404] = {.lex_state = 72}, - [3405] = {.lex_state = 72}, - [3406] = {.lex_state = 72, .external_lex_state = 7}, + [3405] = {.lex_state = 17}, + [3406] = {.lex_state = 17}, [3407] = {.lex_state = 17}, - [3408] = {.lex_state = 72}, + [3408] = {.lex_state = 17}, [3409] = {.lex_state = 72}, - [3410] = {.lex_state = 72}, - [3411] = {.lex_state = 73}, - [3412] = {.lex_state = 72}, + [3410] = {.lex_state = 17}, + [3411] = {.lex_state = 17}, + [3412] = {.lex_state = 17}, [3413] = {.lex_state = 17}, - [3414] = {.lex_state = 72, .external_lex_state = 8}, + [3414] = {.lex_state = 17}, [3415] = {.lex_state = 17}, - [3416] = {.lex_state = 72}, + [3416] = {.lex_state = 17}, [3417] = {.lex_state = 72}, - [3418] = {.lex_state = 72}, - [3419] = {.lex_state = 20}, - [3420] = {.lex_state = 17}, - [3421] = {.lex_state = 17}, + [3418] = {.lex_state = 17}, + [3419] = {.lex_state = 17}, + [3420] = {.lex_state = 72}, + [3421] = {.lex_state = 72}, [3422] = {.lex_state = 72}, - [3423] = {.lex_state = 17}, - [3424] = {.lex_state = 17}, - [3425] = {.lex_state = 20}, + [3423] = {.lex_state = 72}, + [3424] = {.lex_state = 72}, + [3425] = {.lex_state = 17}, [3426] = {.lex_state = 17}, [3427] = {.lex_state = 72}, - [3428] = {.lex_state = 17}, + [3428] = {.lex_state = 72}, [3429] = {.lex_state = 17}, [3430] = {.lex_state = 17}, [3431] = {.lex_state = 17}, [3432] = {.lex_state = 17}, - [3433] = {.lex_state = 72}, - [3434] = {.lex_state = 72, .external_lex_state = 9}, - [3435] = {.lex_state = 72}, + [3433] = {.lex_state = 17}, + [3434] = {.lex_state = 72}, + [3435] = {.lex_state = 17}, [3436] = {.lex_state = 72}, [3437] = {.lex_state = 72}, - [3438] = {.lex_state = 20}, - [3439] = {.lex_state = 72, .external_lex_state = 8}, + [3438] = {.lex_state = 72}, + [3439] = {.lex_state = 72}, [3440] = {.lex_state = 72}, [3441] = {.lex_state = 72}, - [3442] = {.lex_state = 72}, + [3442] = {.lex_state = 73}, [3443] = {.lex_state = 72}, - [3444] = {.lex_state = 17}, + [3444] = {.lex_state = 72}, [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 20}, + [3446] = {.lex_state = 72}, [3447] = {.lex_state = 72}, - [3448] = {.lex_state = 17}, + [3448] = {.lex_state = 72}, [3449] = {.lex_state = 72}, [3450] = {.lex_state = 72}, [3451] = {.lex_state = 72}, [3452] = {.lex_state = 72}, - [3453] = {.lex_state = 72, .external_lex_state = 7}, - [3454] = {.lex_state = 72}, - [3455] = {.lex_state = 17}, + [3453] = {.lex_state = 17}, + [3454] = {.lex_state = 17}, + [3455] = {.lex_state = 72}, [3456] = {.lex_state = 72}, - [3457] = {.lex_state = 72, .external_lex_state = 8}, + [3457] = {.lex_state = 17}, [3458] = {.lex_state = 72}, - [3459] = {.lex_state = 72}, + [3459] = {.lex_state = 17}, [3460] = {.lex_state = 72}, - [3461] = {.lex_state = 72, .external_lex_state = 8}, + [3461] = {.lex_state = 73}, [3462] = {.lex_state = 72}, - [3463] = {.lex_state = 20}, - [3464] = {.lex_state = 20}, + [3463] = {.lex_state = 17}, + [3464] = {.lex_state = 72}, [3465] = {.lex_state = 17}, [3466] = {.lex_state = 72}, [3467] = {.lex_state = 17}, [3468] = {.lex_state = 17}, - [3469] = {.lex_state = 72}, - [3470] = {.lex_state = 72}, - [3471] = {.lex_state = 72}, + [3469] = {.lex_state = 17}, + [3470] = {.lex_state = 17}, + [3471] = {.lex_state = 17}, [3472] = {.lex_state = 72}, [3473] = {.lex_state = 72}, [3474] = {.lex_state = 72}, @@ -13758,226 +13829,270 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3479] = {.lex_state = 72}, [3480] = {.lex_state = 72}, [3481] = {.lex_state = 72}, - [3482] = {.lex_state = 72}, + [3482] = {.lex_state = 21}, [3483] = {.lex_state = 72}, [3484] = {.lex_state = 72}, - [3485] = {.lex_state = 8}, - [3486] = {.lex_state = 72}, - [3487] = {.lex_state = 72}, + [3485] = {.lex_state = 72}, + [3486] = {.lex_state = 17}, + [3487] = {.lex_state = 17}, [3488] = {.lex_state = 72}, [3489] = {.lex_state = 72}, - [3490] = {.lex_state = 72}, - [3491] = {.lex_state = 72}, - [3492] = {.lex_state = 72}, + [3490] = {.lex_state = 73}, + [3491] = {.lex_state = 72, .external_lex_state = 7}, + [3492] = {.lex_state = 72, .external_lex_state = 7}, [3493] = {.lex_state = 72}, - [3494] = {.lex_state = 72}, - [3495] = {.lex_state = 17}, + [3494] = {.lex_state = 17}, + [3495] = {.lex_state = 72}, [3496] = {.lex_state = 72}, [3497] = {.lex_state = 72}, - [3498] = {.lex_state = 73}, + [3498] = {.lex_state = 72, .external_lex_state = 8}, [3499] = {.lex_state = 72}, [3500] = {.lex_state = 17}, - [3501] = {.lex_state = 72, .external_lex_state = 7}, - [3502] = {.lex_state = 72}, + [3501] = {.lex_state = 72}, + [3502] = {.lex_state = 21}, [3503] = {.lex_state = 72}, - [3504] = {.lex_state = 73}, - [3505] = {.lex_state = 73}, - [3506] = {.lex_state = 72}, - [3507] = {.lex_state = 72}, - [3508] = {.lex_state = 17}, + [3504] = {.lex_state = 17}, + [3505] = {.lex_state = 17}, + [3506] = {.lex_state = 72, .external_lex_state = 9}, + [3507] = {.lex_state = 21}, + [3508] = {.lex_state = 72}, [3509] = {.lex_state = 72}, [3510] = {.lex_state = 72}, - [3511] = {.lex_state = 17}, + [3511] = {.lex_state = 21}, [3512] = {.lex_state = 72}, - [3513] = {.lex_state = 17}, + [3513] = {.lex_state = 72}, [3514] = {.lex_state = 72}, - [3515] = {.lex_state = 72}, + [3515] = {.lex_state = 17}, [3516] = {.lex_state = 72}, - [3517] = {.lex_state = 20}, + [3517] = {.lex_state = 72}, [3518] = {.lex_state = 17}, [3519] = {.lex_state = 72}, [3520] = {.lex_state = 72}, - [3521] = {.lex_state = 20}, + [3521] = {.lex_state = 8}, [3522] = {.lex_state = 72}, [3523] = {.lex_state = 72}, - [3524] = {.lex_state = 20}, - [3525] = {.lex_state = 17}, + [3524] = {.lex_state = 17}, + [3525] = {.lex_state = 72, .external_lex_state = 9}, [3526] = {.lex_state = 72}, [3527] = {.lex_state = 72}, - [3528] = {.lex_state = 17}, - [3529] = {.lex_state = 17}, - [3530] = {.lex_state = 17}, - [3531] = {.lex_state = 72}, + [3528] = {.lex_state = 72}, + [3529] = {.lex_state = 72}, + [3530] = {.lex_state = 72}, + [3531] = {.lex_state = 21}, [3532] = {.lex_state = 72}, - [3533] = {.lex_state = 72}, + [3533] = {.lex_state = 72, .external_lex_state = 7}, [3534] = {.lex_state = 72}, [3535] = {.lex_state = 72}, - [3536] = {.lex_state = 72}, + [3536] = {.lex_state = 17}, [3537] = {.lex_state = 72}, [3538] = {.lex_state = 72}, [3539] = {.lex_state = 72}, [3540] = {.lex_state = 72}, - [3541] = {.lex_state = 20}, - [3542] = {.lex_state = 72}, - [3543] = {.lex_state = 17}, - [3544] = {.lex_state = 72, .external_lex_state = 9}, + [3541] = {.lex_state = 72}, + [3542] = {.lex_state = 17}, + [3543] = {.lex_state = 72}, + [3544] = {.lex_state = 72}, [3545] = {.lex_state = 72}, - [3546] = {.lex_state = 72, .external_lex_state = 7}, - [3547] = {.lex_state = 72}, + [3546] = {.lex_state = 72}, + [3547] = {.lex_state = 23}, [3548] = {.lex_state = 72}, - [3549] = {.lex_state = 72}, + [3549] = {.lex_state = 73}, [3550] = {.lex_state = 72}, [3551] = {.lex_state = 72}, [3552] = {.lex_state = 72}, [3553] = {.lex_state = 72}, [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 23}, - [3556] = {.lex_state = 17}, - [3557] = {.lex_state = 17}, - [3558] = {.lex_state = 17}, + [3555] = {.lex_state = 17}, + [3556] = {.lex_state = 72}, + [3557] = {.lex_state = 21}, + [3558] = {.lex_state = 72}, [3559] = {.lex_state = 72}, - [3560] = {.lex_state = 72}, - [3561] = {.lex_state = 17}, - [3562] = {.lex_state = 72}, + [3560] = {.lex_state = 17}, + [3561] = {.lex_state = 72}, + [3562] = {.lex_state = 17}, [3563] = {.lex_state = 72}, [3564] = {.lex_state = 72}, - [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 72}, + [3565] = {.lex_state = 17}, + [3566] = {.lex_state = 23}, [3567] = {.lex_state = 72}, - [3568] = {.lex_state = 17}, - [3569] = {.lex_state = 17}, + [3568] = {.lex_state = 72}, + [3569] = {.lex_state = 72}, [3570] = {.lex_state = 72}, - [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 72}, - [3573] = {.lex_state = 17}, - [3574] = {.lex_state = 72}, - [3575] = {.lex_state = 8}, + [3571] = {.lex_state = 17}, + [3572] = {.lex_state = 17}, + [3573] = {.lex_state = 72}, + [3574] = {.lex_state = 21}, + [3575] = {.lex_state = 72, .external_lex_state = 7}, [3576] = {.lex_state = 72}, - [3577] = {.lex_state = 17}, - [3578] = {.lex_state = 72, .external_lex_state = 9}, - [3579] = {.lex_state = 72}, + [3577] = {.lex_state = 72}, + [3578] = {.lex_state = 72}, + [3579] = {.lex_state = 17}, [3580] = {.lex_state = 72}, - [3581] = {.lex_state = 72}, - [3582] = {.lex_state = 72}, - [3583] = {.lex_state = 17}, - [3584] = {.lex_state = 72}, + [3581] = {.lex_state = 72, .external_lex_state = 8}, + [3582] = {.lex_state = 17}, + [3583] = {.lex_state = 21}, + [3584] = {.lex_state = 72, .external_lex_state = 9}, [3585] = {.lex_state = 72}, [3586] = {.lex_state = 72}, - [3587] = {.lex_state = 72}, + [3587] = {.lex_state = 21}, [3588] = {.lex_state = 72}, - [3589] = {.lex_state = 8}, + [3589] = {.lex_state = 73}, [3590] = {.lex_state = 72}, - [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 17}, - [3593] = {.lex_state = 17}, - [3594] = {.lex_state = 72}, - [3595] = {.lex_state = 72, .external_lex_state = 9}, + [3591] = {.lex_state = 72, .external_lex_state = 7}, + [3592] = {.lex_state = 72}, + [3593] = {.lex_state = 72}, + [3594] = {.lex_state = 17}, + [3595] = {.lex_state = 72}, [3596] = {.lex_state = 72}, - [3597] = {.lex_state = 72}, + [3597] = {.lex_state = 72, .external_lex_state = 8}, [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 72}, - [3601] = {.lex_state = 72, .external_lex_state = 9}, + [3600] = {.lex_state = 17}, + [3601] = {.lex_state = 17}, [3602] = {.lex_state = 72}, [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 17}, - [3605] = {.lex_state = 72}, + [3604] = {.lex_state = 72}, + [3605] = {.lex_state = 17}, [3606] = {.lex_state = 72}, [3607] = {.lex_state = 72}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 72}, + [3609] = {.lex_state = 17}, [3610] = {.lex_state = 72}, [3611] = {.lex_state = 72}, - [3612] = {.lex_state = 72}, + [3612] = {.lex_state = 73}, [3613] = {.lex_state = 72}, - [3614] = {.lex_state = 72}, + [3614] = {.lex_state = 8}, [3615] = {.lex_state = 72}, - [3616] = {.lex_state = 72}, + [3616] = {.lex_state = 8}, [3617] = {.lex_state = 72, .external_lex_state = 8}, - [3618] = {.lex_state = 20}, + [3618] = {.lex_state = 17}, [3619] = {.lex_state = 72}, [3620] = {.lex_state = 72}, [3621] = {.lex_state = 72}, - [3622] = {.lex_state = 20}, - [3623] = {.lex_state = 20}, - [3624] = {.lex_state = 167}, - [3625] = {.lex_state = 72}, + [3622] = {.lex_state = 72}, + [3623] = {.lex_state = 72}, + [3624] = {.lex_state = 72}, + [3625] = {.lex_state = 17}, [3626] = {.lex_state = 72}, - [3627] = {.lex_state = 20}, - [3628] = {.lex_state = 20}, - [3629] = {.lex_state = 17}, - [3630] = {.lex_state = 17}, - [3631] = {.lex_state = 17}, + [3627] = {.lex_state = 72}, + [3628] = {.lex_state = 17}, + [3629] = {.lex_state = 72}, + [3630] = {.lex_state = 72}, + [3631] = {.lex_state = 72}, [3632] = {.lex_state = 72}, - [3633] = {.lex_state = 17}, - [3634] = {.lex_state = 72}, - [3635] = {.lex_state = 72}, + [3633] = {.lex_state = 73}, + [3634] = {.lex_state = 17}, + [3635] = {.lex_state = 17}, [3636] = {.lex_state = 17}, - [3637] = {.lex_state = 17}, - [3638] = {.lex_state = 20}, + [3637] = {.lex_state = 72, .external_lex_state = 8}, + [3638] = {.lex_state = 72}, [3639] = {.lex_state = 72}, - [3640] = {.lex_state = 23}, - [3641] = {.lex_state = 20}, + [3640] = {.lex_state = 72}, + [3641] = {.lex_state = 72}, [3642] = {.lex_state = 72}, - [3643] = {.lex_state = 17}, + [3643] = {.lex_state = 72, .external_lex_state = 8}, [3644] = {.lex_state = 72}, [3645] = {.lex_state = 72}, [3646] = {.lex_state = 17}, - [3647] = {.lex_state = 20}, - [3648] = {.lex_state = 17}, + [3647] = {.lex_state = 72}, + [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 17}, + [3650] = {.lex_state = 72}, [3651] = {.lex_state = 72}, - [3652] = {.lex_state = 17}, + [3652] = {.lex_state = 72}, [3653] = {.lex_state = 72}, [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 20}, - [3656] = {.lex_state = 73}, - [3657] = {.lex_state = 72, .external_lex_state = 7}, - [3658] = {.lex_state = 17}, - [3659] = {.lex_state = 20}, - [3660] = {.lex_state = 72}, - [3661] = {.lex_state = 20}, + [3655] = {.lex_state = 72}, + [3656] = {.lex_state = 72}, + [3657] = {.lex_state = 72}, + [3658] = {.lex_state = 72}, + [3659] = {.lex_state = 72}, + [3660] = {.lex_state = 21}, + [3661] = {.lex_state = 72}, [3662] = {.lex_state = 72}, [3663] = {.lex_state = 72}, - [3664] = {.lex_state = 20}, - [3665] = {.lex_state = 72}, - [3666] = {.lex_state = 73}, - [3667] = {.lex_state = 20}, - [3668] = {.lex_state = 20}, + [3664] = {.lex_state = 21}, + [3665] = {.lex_state = 21}, + [3666] = {.lex_state = 72}, + [3667] = {.lex_state = 72}, + [3668] = {.lex_state = 72}, [3669] = {.lex_state = 72}, - [3670] = {.lex_state = 72}, - [3671] = {.lex_state = 20}, - [3672] = {.lex_state = 20}, - [3673] = {.lex_state = 20}, + [3670] = {.lex_state = 21}, + [3671] = {.lex_state = 21}, + [3672] = {.lex_state = 72}, + [3673] = {.lex_state = 17}, [3674] = {.lex_state = 72}, - [3675] = {.lex_state = 17}, + [3675] = {.lex_state = 72}, [3676] = {.lex_state = 72}, [3677] = {.lex_state = 17}, - [3678] = {.lex_state = 17}, + [3678] = {.lex_state = 72}, [3679] = {.lex_state = 72}, - [3680] = {.lex_state = 72}, - [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 17}, + [3680] = {.lex_state = 21}, + [3681] = {.lex_state = 72}, + [3682] = {.lex_state = 72}, [3683] = {.lex_state = 72}, - [3684] = {.lex_state = 17}, + [3684] = {.lex_state = 21}, [3685] = {.lex_state = 72}, [3686] = {.lex_state = 72}, - [3687] = {.lex_state = 20}, + [3687] = {.lex_state = 72}, [3688] = {.lex_state = 72}, - [3689] = {.lex_state = 17}, - [3690] = {.lex_state = 72, .external_lex_state = 9}, + [3689] = {.lex_state = 72}, + [3690] = {.lex_state = 21}, [3691] = {.lex_state = 72}, - [3692] = {.lex_state = 73}, - [3693] = {.lex_state = 72}, - [3694] = {.lex_state = 17}, - [3695] = {(TSStateId)(-1),}, - [3696] = {(TSStateId)(-1),}, - [3697] = {(TSStateId)(-1),}, - [3698] = {(TSStateId)(-1),}, - [3699] = {(TSStateId)(-1),}, - [3700] = {(TSStateId)(-1),}, - [3701] = {(TSStateId)(-1),}, + [3692] = {.lex_state = 72, .external_lex_state = 9}, + [3693] = {.lex_state = 17}, + [3694] = {.lex_state = 21}, + [3695] = {.lex_state = 72}, + [3696] = {.lex_state = 17}, + [3697] = {.lex_state = 72}, + [3698] = {.lex_state = 167}, + [3699] = {.lex_state = 17}, + [3700] = {.lex_state = 17}, + [3701] = {.lex_state = 72}, + [3702] = {.lex_state = 72}, + [3703] = {.lex_state = 21}, + [3704] = {.lex_state = 72}, + [3705] = {.lex_state = 21}, + [3706] = {.lex_state = 21}, + [3707] = {.lex_state = 72}, + [3708] = {.lex_state = 72}, + [3709] = {.lex_state = 21}, + [3710] = {.lex_state = 17}, + [3711] = {.lex_state = 72, .external_lex_state = 9}, + [3712] = {.lex_state = 21}, + [3713] = {.lex_state = 21}, + [3714] = {.lex_state = 72}, + [3715] = {.lex_state = 17}, + [3716] = {.lex_state = 21}, + [3717] = {.lex_state = 21}, + [3718] = {.lex_state = 21}, + [3719] = {.lex_state = 72}, + [3720] = {.lex_state = 17}, + [3721] = {.lex_state = 72}, + [3722] = {.lex_state = 73}, + [3723] = {.lex_state = 17}, + [3724] = {.lex_state = 72}, + [3725] = {.lex_state = 17}, + [3726] = {.lex_state = 17}, + [3727] = {.lex_state = 17}, + [3728] = {.lex_state = 72}, + [3729] = {.lex_state = 17}, + [3730] = {.lex_state = 17}, + [3731] = {.lex_state = 17}, + [3732] = {.lex_state = 21}, + [3733] = {.lex_state = 17}, + [3734] = {.lex_state = 17}, + [3735] = {.lex_state = 17}, + [3736] = {.lex_state = 72}, + [3737] = {.lex_state = 72}, + [3738] = {.lex_state = 72, .external_lex_state = 9}, + [3739] = {(TSStateId)(-1),}, + [3740] = {(TSStateId)(-1),}, + [3741] = {(TSStateId)(-1),}, + [3742] = {(TSStateId)(-1),}, + [3743] = {(TSStateId)(-1),}, + [3744] = {(TSStateId)(-1),}, + [3745] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14136,79 +14251,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3502), - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_source_file] = STATE(3701), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [aux_sym_source_file_repeat1] = STATE(5), @@ -14292,78 +14407,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), [aux_sym_source_file_repeat1] = STATE(13), @@ -14446,81 +14561,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(2), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14600,78 +14715,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(7), @@ -14754,78 +14869,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), [aux_sym_source_file_repeat1] = STATE(8), @@ -14908,78 +15023,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(13), @@ -15062,78 +15177,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(8), @@ -15216,78 +15331,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(8)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(8), @@ -15370,78 +15485,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(9)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(10), @@ -15524,78 +15639,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), [aux_sym_source_file_repeat1] = STATE(13), @@ -15678,78 +15793,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), @@ -15832,78 +15947,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(13), @@ -15986,78 +16101,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(13)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1888), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1929), [sym_macro_invocation] = STATE(419), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), [aux_sym_source_file_repeat1] = STATE(13), @@ -16140,81 +16255,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(14)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_source_file_repeat1] = STATE(15), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -16294,81 +16409,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(15)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(13), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -16448,78 +16563,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(17), @@ -16602,78 +16717,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), [aux_sym_source_file_repeat1] = STATE(13), @@ -16756,78 +16871,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(19), @@ -16910,78 +17025,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), [aux_sym_source_file_repeat1] = STATE(13), @@ -17064,78 +17179,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(21), @@ -17218,78 +17333,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), [aux_sym_source_file_repeat1] = STATE(13), @@ -17372,78 +17487,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(23), @@ -17526,78 +17641,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), [aux_sym_source_file_repeat1] = STATE(13), @@ -17680,78 +17795,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(25), @@ -17834,78 +17949,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), [aux_sym_source_file_repeat1] = STATE(13), @@ -17988,81 +18103,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_source_file_repeat1] = STATE(27), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -18142,81 +18257,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_source_file_repeat1] = STATE(13), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -18296,81 +18411,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(29), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -18450,81 +18565,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(13), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -18604,81 +18719,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(31), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -18758,81 +18873,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(13), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -18912,81 +19027,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(33), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -19066,81 +19181,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_source_file_repeat1] = STATE(13), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -19220,81 +19335,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [sym__statement] = STATE(575), - [sym_empty_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_macro_definition] = STATE(587), - [sym_attribute_item] = STATE(587), - [sym_inner_attribute_item] = STATE(587), - [sym_mod_item] = STATE(587), - [sym_foreign_mod_item] = STATE(587), - [sym_struct_item] = STATE(587), - [sym_union_item] = STATE(587), - [sym_enum_item] = STATE(587), - [sym_extern_crate_declaration] = STATE(587), - [sym_const_item] = STATE(587), - [sym_static_item] = STATE(587), - [sym_type_item] = STATE(587), - [sym_function_item] = STATE(587), - [sym_function_signature_item] = STATE(587), - [sym_function_modifiers] = STATE(3646), - [sym_impl_item] = STATE(587), - [sym_trait_item] = STATE(587), - [sym_associated_type] = STATE(587), - [sym_let_declaration] = STATE(587), - [sym_use_declaration] = STATE(587), - [sym_extern_modifier] = STATE(2188), - [sym_visibility_modifier] = STATE(1970), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(404), - [sym_match_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3517), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(404), - [sym_async_block] = STATE(404), - [sym_gen_block] = STATE(404), - [sym_try_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym__statement] = STATE(771), + [sym_empty_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_macro_definition] = STATE(662), + [sym_attribute_item] = STATE(662), + [sym_inner_attribute_item] = STATE(662), + [sym_mod_item] = STATE(662), + [sym_foreign_mod_item] = STATE(662), + [sym_struct_item] = STATE(662), + [sym_union_item] = STATE(662), + [sym_enum_item] = STATE(662), + [sym_extern_crate_declaration] = STATE(662), + [sym_const_item] = STATE(662), + [sym_static_item] = STATE(662), + [sym_type_item] = STATE(662), + [sym_function_item] = STATE(662), + [sym_function_signature_item] = STATE(662), + [sym_function_modifiers] = STATE(3555), + [sym_impl_item] = STATE(662), + [sym_trait_item] = STATE(662), + [sym_associated_type] = STATE(662), + [sym_let_declaration] = STATE(662), + [sym_use_declaration] = STATE(662), + [sym_extern_modifier] = STATE(2204), + [sym_visibility_modifier] = STATE(1999), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(411), + [sym_scoped_identifier] = STATE(1583), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3507), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_gen_block] = STATE(392), + [sym_try_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(6), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -19374,53 +19489,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1522), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19522,65 +19637,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1523), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1547), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19599,13 +19714,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(377), + [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(377), + [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(37)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(37), + [sym_block_comment] = STATE(37), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(381), [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(38)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1547), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(38), + [sym_block_comment] = STATE(38), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [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(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -19624,11 +20033,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), @@ -19668,361 +20077,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(37)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(37), - [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [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(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), - [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(389), - [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(38)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(38), - [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [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(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), - [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(389), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1520), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20040,42 +20155,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20091,7 +20206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(393), + [anon_sym_else] = ACTIONS(381), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20110,66 +20225,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(40)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1520), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1545), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(383), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(383), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20187,42 +20302,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(385), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20238,7 +20353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(393), + [anon_sym_else] = ACTIONS(385), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20257,65 +20372,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(41)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1530), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1543), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(395), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(395), [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(349), [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20334,13 +20449,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(397), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_SLASH] = ACTIONS(397), [anon_sym_PERCENT] = ACTIONS(397), [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(395), [anon_sym_PIPE_PIPE] = ACTIONS(395), [anon_sym_LT_LT] = ACTIONS(397), @@ -20359,16 +20474,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(395), [anon_sym_BANG_EQ] = ACTIONS(395), [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(391), [anon_sym_GT_EQ] = ACTIONS(395), [anon_sym_LT_EQ] = ACTIONS(395), [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(393), [anon_sym_DOT_DOT_DOT] = ACTIONS(395), [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COMMA] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -20404,66 +20519,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1526), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1537), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20481,42 +20596,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(401), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20532,7 +20647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(403), + [anon_sym_else] = ACTIONS(401), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20551,53 +20666,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20694,63 +20809,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20768,41 +20883,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(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_as] = ACTIONS(401), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -20836,56 +20951,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1611), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(341), [anon_sym_LBRACK] = ACTIONS(341), [anon_sym_LBRACE] = ACTIONS(341), @@ -20893,28 +21008,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), [anon_sym_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_BANG] = ACTIONS(471), [anon_sym_AMP] = ACTIONS(347), [anon_sym_PIPE] = ACTIONS(347), [anon_sym_AMP_AMP] = ACTIONS(341), @@ -20942,13 +21057,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(347), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -20978,346 +21093,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), [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(495), - [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(497), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(47)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(48)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(395), [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(413), [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), @@ -21336,13 +21167,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(397), + [anon_sym_DASH] = ACTIONS(413), [anon_sym_SLASH] = ACTIONS(397), [anon_sym_PERCENT] = ACTIONS(397), [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(395), [anon_sym_PIPE_PIPE] = ACTIONS(395), [anon_sym_LT_LT] = ACTIONS(397), @@ -21361,15 +21192,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(395), [anon_sym_BANG_EQ] = ACTIONS(395), [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(391), [anon_sym_GT_EQ] = ACTIONS(395), [anon_sym_LT_EQ] = ACTIONS(395), [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(501), [anon_sym_DOT_DOT_DOT] = ACTIONS(395), [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -21403,63 +21234,205 @@ 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(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [STATE(47)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [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_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(385), + [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(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), @@ -21478,13 +21451,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -21503,11 +21476,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(515), + [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), @@ -21545,64 +21518,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(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), + [STATE(49)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21620,41 +21593,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(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21687,64 +21660,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(51)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), + [STATE(50)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_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), @@ -21762,41 +21735,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(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_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(393), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21829,64 +21802,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(52)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), + [STATE(51)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21904,41 +21877,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(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21971,414 +21944,133 @@ 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(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(45), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(53), - [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [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(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(54)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [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(381), - [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(383), - [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), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(55)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [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(495), - [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(495), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [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(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [STATE(52)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1635), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [sym_identifier] = ACTIONS(467), + [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(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_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(473), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -22394,87 +22086,87 @@ 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(56)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [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), + [STATE(53)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [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_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(503), + [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), @@ -22493,20 +22185,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(377), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(54)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(45), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -22535,132 +22368,132 @@ 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(57)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(57), - [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(465), + [STATE(55)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(519), [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(385), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -22676,87 +22509,87 @@ 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(58)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(46), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), + [STATE(56)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(503), [anon_sym_QMARK] = ACTIONS(395), - [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(397), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(503), [anon_sym_SLASH] = ACTIONS(397), [anon_sym_PERCENT] = ACTIONS(397), [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(395), [anon_sym_PIPE_PIPE] = ACTIONS(395), [anon_sym_LT_LT] = ACTIONS(397), @@ -22775,33 +22608,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(395), [anon_sym_BANG_EQ] = ACTIONS(395), [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(391), [anon_sym_GT_EQ] = ACTIONS(395), [anon_sym_LT_EQ] = ACTIONS(395), [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(521), [anon_sym_DOT_DOT_DOT] = ACTIONS(395), [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -22817,87 +22650,228 @@ 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(59)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(465), + [STATE(57)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(58)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(495), + [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(495), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(503), + [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), @@ -22916,33 +22890,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(377), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -22958,119 +22932,119 @@ 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(60)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(60), - [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(465), + [STATE(59)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [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(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -23099,132 +23073,132 @@ 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(61)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), + [STATE(60)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(523), [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(385), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23240,132 +23214,132 @@ 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(62)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(62), - [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(465), + [STATE(61)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [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(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -23381,260 +23355,260 @@ 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(63)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(63), - [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(62)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [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(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(471), + [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(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(64)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_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(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), + [STATE(63)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -23663,132 +23637,273 @@ 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(64)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(65)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), + [sym_identifier] = ACTIONS(467), + [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(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(471), + [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(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23805,131 +23920,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_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(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23946,18 +24061,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [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(144), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(527), [anon_sym_SEMI] = ACTIONS(530), [anon_sym_LPAREN] = ACTIONS(533), @@ -24072,30 +24187,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), }, [STATE(68)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(76), - [aux_sym__non_special_token_repeat1] = STATE(144), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = 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_SEMI] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_EQ_GT] = ACTIONS(568), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(568), [anon_sym_u8] = ACTIONS(565), [anon_sym_i8] = ACTIONS(565), [anon_sym_u16] = ACTIONS(565), @@ -24113,44 +24229,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_AT] = ACTIONS(568), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(568), + [anon_sym_DASH_GT] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(568), [anon_sym_SQUOTE] = ACTIONS(565), [anon_sym_as] = ACTIONS(565), [anon_sym_async] = ACTIONS(565), @@ -24181,1903 +24297,1903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_integer_literal] = ACTIONS(588), + [aux_sym_string_literal_token1] = ACTIONS(591), + [sym_char_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), [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), + [sym__raw_string_literal_start] = ACTIONS(597), + [sym_float_literal] = ACTIONS(588), }, [STATE(69)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [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(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_RBRACK] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_EQ_GT] = ACTIONS(603), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(603), + [anon_sym_u8] = ACTIONS(600), + [anon_sym_i8] = ACTIONS(600), + [anon_sym_u16] = ACTIONS(600), + [anon_sym_i16] = ACTIONS(600), + [anon_sym_u32] = ACTIONS(600), + [anon_sym_i32] = ACTIONS(600), + [anon_sym_u64] = ACTIONS(600), + [anon_sym_i64] = ACTIONS(600), + [anon_sym_u128] = ACTIONS(600), + [anon_sym_i128] = ACTIONS(600), + [anon_sym_isize] = ACTIONS(600), + [anon_sym_usize] = ACTIONS(600), + [anon_sym_f32] = ACTIONS(600), + [anon_sym_f64] = ACTIONS(600), + [anon_sym_bool] = ACTIONS(600), + [anon_sym_str] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_AT] = ACTIONS(603), + [anon_sym__] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_DOT_DOT] = ACTIONS(617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_COLON_COLON] = ACTIONS(603), + [anon_sym_DASH_GT] = ACTIONS(603), + [anon_sym_POUND] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(600), + [anon_sym_as] = ACTIONS(600), + [anon_sym_async] = ACTIONS(600), + [anon_sym_await] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_fn] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_gen] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_impl] = ACTIONS(600), + [anon_sym_let] = ACTIONS(600), + [anon_sym_loop] = ACTIONS(600), + [anon_sym_match] = ACTIONS(600), + [anon_sym_mod] = ACTIONS(600), + [anon_sym_pub] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(600), + [anon_sym_trait] = ACTIONS(600), + [anon_sym_type] = ACTIONS(600), + [anon_sym_union] = ACTIONS(600), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_use] = ACTIONS(600), + [anon_sym_where] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [sym_mutable_specifier] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(626), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(629), + [anon_sym_false] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(632), + [sym__raw_string_literal_start] = ACTIONS(635), + [sym_float_literal] = ACTIONS(623), }, [STATE(70)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(593), - [anon_sym_SEMI] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_RBRACK] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_EQ_GT] = ACTIONS(596), - [anon_sym_COLON] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_u8] = ACTIONS(593), - [anon_sym_i8] = ACTIONS(593), - [anon_sym_u16] = ACTIONS(593), - [anon_sym_i16] = ACTIONS(593), - [anon_sym_u32] = ACTIONS(593), - [anon_sym_i32] = ACTIONS(593), - [anon_sym_u64] = ACTIONS(593), - [anon_sym_i64] = ACTIONS(593), - [anon_sym_u128] = ACTIONS(593), - [anon_sym_i128] = ACTIONS(593), - [anon_sym_isize] = ACTIONS(593), - [anon_sym_usize] = ACTIONS(593), - [anon_sym_f32] = ACTIONS(593), - [anon_sym_f64] = ACTIONS(593), - [anon_sym_bool] = ACTIONS(593), - [anon_sym_str] = ACTIONS(593), - [anon_sym_char] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(596), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym_DASH_GT] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_async] = ACTIONS(593), - [anon_sym_await] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_default] = ACTIONS(593), - [anon_sym_enum] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(593), - [anon_sym_for] = ACTIONS(593), - [anon_sym_gen] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_impl] = ACTIONS(593), - [anon_sym_let] = ACTIONS(593), - [anon_sym_loop] = ACTIONS(593), - [anon_sym_match] = ACTIONS(593), - [anon_sym_mod] = ACTIONS(593), - [anon_sym_pub] = ACTIONS(593), - [anon_sym_return] = ACTIONS(593), - [anon_sym_static] = ACTIONS(593), - [anon_sym_struct] = ACTIONS(593), - [anon_sym_trait] = ACTIONS(593), - [anon_sym_type] = ACTIONS(593), - [anon_sym_union] = ACTIONS(593), - [anon_sym_unsafe] = ACTIONS(593), - [anon_sym_use] = ACTIONS(593), - [anon_sym_where] = ACTIONS(593), - [anon_sym_while] = ACTIONS(593), - [sym_mutable_specifier] = ACTIONS(593), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(619), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(593), - [sym_super] = ACTIONS(593), - [sym_crate] = ACTIONS(593), - [sym_metavariable] = ACTIONS(625), - [sym__raw_string_literal_start] = ACTIONS(628), - [sym_float_literal] = ACTIONS(616), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(71)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [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(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(72)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(75), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [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(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(73)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [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(70), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(74)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [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(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [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(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(75)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [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(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(573), - [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(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(76)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), + [aux_sym_token_tree_pattern_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(77)] = { + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(78)] = { + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(633), - [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), - }, - [STATE(77)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(77), - [sym_block_comment] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(649), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_EQ_GT] = ACTIONS(638), - [anon_sym_COLON] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(638), - [anon_sym_u8] = ACTIONS(635), - [anon_sym_i8] = ACTIONS(635), - [anon_sym_u16] = ACTIONS(635), - [anon_sym_i16] = ACTIONS(635), - [anon_sym_u32] = ACTIONS(635), - [anon_sym_i32] = ACTIONS(635), - [anon_sym_u64] = ACTIONS(635), - [anon_sym_i64] = ACTIONS(635), - [anon_sym_u128] = ACTIONS(635), - [anon_sym_i128] = ACTIONS(635), - [anon_sym_isize] = ACTIONS(635), - [anon_sym_usize] = ACTIONS(635), - [anon_sym_f32] = ACTIONS(635), - [anon_sym_f64] = ACTIONS(635), - [anon_sym_bool] = ACTIONS(635), - [anon_sym_str] = ACTIONS(635), - [anon_sym_char] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_PLUS_EQ] = ACTIONS(638), - [anon_sym_DASH_EQ] = ACTIONS(638), - [anon_sym_STAR_EQ] = ACTIONS(638), - [anon_sym_SLASH_EQ] = ACTIONS(638), - [anon_sym_PERCENT_EQ] = ACTIONS(638), - [anon_sym_CARET_EQ] = ACTIONS(638), - [anon_sym_AMP_EQ] = ACTIONS(638), - [anon_sym_PIPE_EQ] = ACTIONS(638), - [anon_sym_LT_LT_EQ] = ACTIONS(638), - [anon_sym_GT_GT_EQ] = ACTIONS(638), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(638), - [anon_sym_BANG_EQ] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(638), - [anon_sym_LT_EQ] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(638), - [anon_sym__] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_DOT_DOT] = ACTIONS(652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(638), - [anon_sym_DASH_GT] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(638), - [anon_sym_SQUOTE] = ACTIONS(635), - [anon_sym_as] = ACTIONS(635), - [anon_sym_async] = ACTIONS(635), - [anon_sym_await] = ACTIONS(635), - [anon_sym_break] = ACTIONS(635), - [anon_sym_const] = ACTIONS(635), - [anon_sym_continue] = ACTIONS(635), - [anon_sym_default] = ACTIONS(635), - [anon_sym_enum] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_gen] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_impl] = ACTIONS(635), - [anon_sym_let] = ACTIONS(635), - [anon_sym_loop] = ACTIONS(635), - [anon_sym_match] = ACTIONS(635), - [anon_sym_mod] = ACTIONS(635), - [anon_sym_pub] = ACTIONS(635), - [anon_sym_return] = ACTIONS(635), - [anon_sym_static] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(635), - [anon_sym_trait] = ACTIONS(635), - [anon_sym_type] = ACTIONS(635), - [anon_sym_union] = ACTIONS(635), - [anon_sym_unsafe] = ACTIONS(635), - [anon_sym_use] = ACTIONS(635), - [anon_sym_where] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [sym_mutable_specifier] = ACTIONS(635), - [sym_integer_literal] = ACTIONS(658), - [aux_sym_string_literal_token1] = ACTIONS(661), - [sym_char_literal] = ACTIONS(658), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(635), - [sym_super] = ACTIONS(635), - [sym_crate] = ACTIONS(635), - [sym__raw_string_literal_start] = ACTIONS(667), - [sym_float_literal] = ACTIONS(658), - }, - [STATE(78)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(78), - [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [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), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(79)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), [anon_sym_RBRACK] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(573), - [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), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(80)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), - [aux_sym_token_tree_pattern_repeat1] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), [anon_sym_RBRACE] = ACTIONS(670), - [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), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(81)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [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(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), [anon_sym_RPAREN] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), - [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), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(82)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), [anon_sym_RBRACK] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(573), - [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), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(83)] = { - [sym__token_pattern] = STATE(173), - [sym_token_tree_pattern] = STATE(171), - [sym_token_binding_pattern] = STATE(171), - [sym_token_repetition_pattern] = STATE(171), - [sym__literal] = STATE(171), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(154), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), [anon_sym_RBRACE] = ACTIONS(672), - [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), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(84)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym_token_tree_repeat1] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -26095,44 +26211,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -26163,43 +26279,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [STATE(85)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(698), + [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), @@ -26217,44 +26333,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -26285,43 +26401,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [STATE(86)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_repeat1] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(87)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [aux_sym_token_tree_repeat1] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(88)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(128), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(678), + [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(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -26339,44 +26699,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -26407,43 +26767,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, - [STATE(87)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(136), + [STATE(89)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(132), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), + [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_RBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -26461,44 +26821,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -26529,409 +26889,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [STATE(88)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(89)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(91)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [aux_sym_token_tree_repeat1] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(85), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -26949,44 +26943,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27017,43 +27011,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, - [STATE(92)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), + [STATE(91)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(95), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -27071,44 +27065,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27139,43 +27133,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, - [STATE(93)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), + [STATE(92)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(96), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), + [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(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -27193,44 +27187,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27261,43 +27255,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, - [STATE(94)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym_token_tree_repeat1] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(136), + [STATE(93)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(97), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -27315,44 +27309,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27383,43 +27377,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), + }, + [STATE(94)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(95)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), + [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_RBRACE] = ACTIONS(716), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -27437,44 +27553,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27505,43 +27621,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [STATE(96)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym_token_tree_repeat1] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), + [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_RBRACE] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -27559,44 +27675,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27627,43 +27743,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [STATE(97)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -27681,44 +27797,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27749,113 +27865,1089 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [STATE(98)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [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(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(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_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(99)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(100)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym_token_tree_repeat1] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(101)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym_token_tree_repeat1] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(102)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym_token_tree_repeat1] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(103)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(104)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(105)] = { + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(106)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(109), + [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), @@ -27871,43 +28963,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, - [STATE(99)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), + [STATE(107)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(110), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), + [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_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -27925,44 +29017,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -27993,43 +29085,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, - [STATE(100)] = { - [sym_token_tree] = STATE(166), - [sym_token_repetition] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(136), + [STATE(108)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(111), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [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), @@ -28047,44 +29139,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(674), [anon_sym_str] = ACTIONS(674), [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(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), @@ -28115,4098 +29207,3121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(674), [anon_sym_while] = ACTIONS(674), [sym_mutable_specifier] = ACTIONS(674), - [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), + [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_metavariable] = ACTIONS(686), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [STATE(101)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(102)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(103)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(104)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(105)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(106)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(107)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(108)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [STATE(109)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [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), }, [STATE(110)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [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), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [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), }, [STATE(112)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym_token_tree_repeat1] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(113)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym_token_tree_repeat1] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(117), + [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), }, [STATE(115)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [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_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), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(119), + [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), }, [STATE(117)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(118)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(736), + [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), + }, + [STATE(118)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), + [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(736), + [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), }, [STATE(119)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [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(736), + [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), }, [STATE(120)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(153), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [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), }, [STATE(121)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(124), + [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), }, [STATE(122)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [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), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [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), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [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), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(153), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [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), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(153), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), - }, - [STATE(127)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), + [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), + }, + [STATE(127)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(212), + [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(131), + [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), }, [STATE(128)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(698), + [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), }, [STATE(129)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(742), + [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), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(742), + [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), }, [STATE(131)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [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(742), + [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), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), [sym_string_literal] = STATE(212), [sym_raw_string_literal] = STATE(212), [sym_boolean_literal] = STATE(212), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(698), + [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), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(175), + [sym_raw_string_literal] = STATE(175), + [sym_boolean_literal] = STATE(175), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(153), - [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(692), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(692), - [anon_sym_i8] = ACTIONS(692), - [anon_sym_u16] = ACTIONS(692), - [anon_sym_i16] = ACTIONS(692), - [anon_sym_u32] = ACTIONS(692), - [anon_sym_i32] = ACTIONS(692), - [anon_sym_u64] = ACTIONS(692), - [anon_sym_i64] = ACTIONS(692), - [anon_sym_u128] = ACTIONS(692), - [anon_sym_i128] = ACTIONS(692), - [anon_sym_isize] = ACTIONS(692), - [anon_sym_usize] = ACTIONS(692), - [anon_sym_f32] = ACTIONS(692), - [anon_sym_f64] = ACTIONS(692), - [anon_sym_bool] = ACTIONS(692), - [anon_sym_str] = ACTIONS(692), - [anon_sym_char] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_enum] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_gen] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_impl] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_loop] = ACTIONS(692), - [anon_sym_match] = ACTIONS(692), - [anon_sym_mod] = ACTIONS(692), - [anon_sym_pub] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_static] = ACTIONS(692), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_trait] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_union] = ACTIONS(692), - [anon_sym_unsafe] = ACTIONS(692), - [anon_sym_use] = ACTIONS(692), - [anon_sym_where] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [sym_mutable_specifier] = ACTIONS(692), - [sym_integer_literal] = ACTIONS(708), - [aux_sym_string_literal_token1] = ACTIONS(710), - [sym_char_literal] = ACTIONS(708), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_crate] = ACTIONS(692), - [sym__raw_string_literal_start] = ACTIONS(714), - [sym_float_literal] = ACTIONS(708), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(700), + [anon_sym_i8] = ACTIONS(700), + [anon_sym_u16] = ACTIONS(700), + [anon_sym_i16] = ACTIONS(700), + [anon_sym_u32] = ACTIONS(700), + [anon_sym_i32] = ACTIONS(700), + [anon_sym_u64] = ACTIONS(700), + [anon_sym_i64] = ACTIONS(700), + [anon_sym_u128] = ACTIONS(700), + [anon_sym_i128] = ACTIONS(700), + [anon_sym_isize] = ACTIONS(700), + [anon_sym_usize] = ACTIONS(700), + [anon_sym_f32] = ACTIONS(700), + [anon_sym_f64] = ACTIONS(700), + [anon_sym_bool] = ACTIONS(700), + [anon_sym_str] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_as] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_const] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_gen] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_impl] = ACTIONS(700), + [anon_sym_let] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(700), + [anon_sym_match] = ACTIONS(700), + [anon_sym_mod] = ACTIONS(700), + [anon_sym_pub] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_struct] = ACTIONS(700), + [anon_sym_trait] = ACTIONS(700), + [anon_sym_type] = ACTIONS(700), + [anon_sym_union] = ACTIONS(700), + [anon_sym_unsafe] = ACTIONS(700), + [anon_sym_use] = ACTIONS(700), + [anon_sym_where] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [sym_mutable_specifier] = ACTIONS(700), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_crate] = ACTIONS(700), + [sym_metavariable] = ACTIONS(712), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(142), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32273,57 +32388,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(135)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1652), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), [anon_sym_LBRACK] = ACTIONS(756), @@ -32390,178 +32505,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(842), }, [STATE(136)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1603), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u128] = ACTIONS(863), - [anon_sym_i128] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_str] = ACTIONS(863), - [anon_sym_char] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(863), - [anon_sym_as] = ACTIONS(863), - [anon_sym_async] = ACTIONS(863), - [anon_sym_await] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_const] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_default] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_fn] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_gen] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_impl] = ACTIONS(863), - [anon_sym_let] = ACTIONS(863), - [anon_sym_loop] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(863), - [anon_sym_pub] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_trait] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_union] = ACTIONS(863), - [anon_sym_unsafe] = ACTIONS(863), - [anon_sym_use] = ACTIONS(863), - [anon_sym_where] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [sym_mutable_specifier] = ACTIONS(863), - [sym_integer_literal] = ACTIONS(865), - [aux_sym_string_literal_token1] = ACTIONS(865), - [sym_char_literal] = ACTIONS(865), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(863), - [sym_super] = ACTIONS(863), - [sym_crate] = ACTIONS(863), - [sym_metavariable] = ACTIONS(865), - [sym__raw_string_literal_start] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), - }, - [STATE(137)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(139), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_RBRACK] = ACTIONS(863), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32587,7 +32585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(865), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32623,179 +32621,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(138)] = { - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym__non_special_token_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_EQ_GT] = ACTIONS(873), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(878), - [anon_sym_QMARK] = ACTIONS(873), - [anon_sym_u8] = ACTIONS(871), - [anon_sym_i8] = ACTIONS(871), - [anon_sym_u16] = ACTIONS(871), - [anon_sym_i16] = ACTIONS(871), - [anon_sym_u32] = ACTIONS(871), - [anon_sym_i32] = ACTIONS(871), - [anon_sym_u64] = ACTIONS(871), - [anon_sym_i64] = ACTIONS(871), - [anon_sym_u128] = ACTIONS(871), - [anon_sym_i128] = ACTIONS(871), - [anon_sym_isize] = ACTIONS(871), - [anon_sym_usize] = ACTIONS(871), - [anon_sym_f32] = ACTIONS(871), - [anon_sym_f64] = ACTIONS(871), - [anon_sym_bool] = ACTIONS(871), - [anon_sym_str] = ACTIONS(871), - [anon_sym_char] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_SLASH] = ACTIONS(878), - [anon_sym_PERCENT] = ACTIONS(878), - [anon_sym_CARET] = ACTIONS(878), - [anon_sym_BANG] = ACTIONS(878), - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(873), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [anon_sym_PLUS_EQ] = ACTIONS(873), - [anon_sym_DASH_EQ] = ACTIONS(873), - [anon_sym_STAR_EQ] = ACTIONS(873), - [anon_sym_SLASH_EQ] = ACTIONS(873), - [anon_sym_PERCENT_EQ] = ACTIONS(873), - [anon_sym_CARET_EQ] = ACTIONS(873), - [anon_sym_AMP_EQ] = ACTIONS(873), - [anon_sym_PIPE_EQ] = ACTIONS(873), - [anon_sym_LT_LT_EQ] = ACTIONS(873), - [anon_sym_GT_GT_EQ] = ACTIONS(873), - [anon_sym_EQ] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_AT] = ACTIONS(873), - [anon_sym__] = ACTIONS(878), - [anon_sym_DOT] = ACTIONS(878), - [anon_sym_DOT_DOT] = ACTIONS(878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_COLON_COLON] = ACTIONS(873), - [anon_sym_DASH_GT] = ACTIONS(873), - [anon_sym_POUND] = ACTIONS(873), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_as] = ACTIONS(871), - [anon_sym_async] = ACTIONS(871), - [anon_sym_await] = ACTIONS(871), - [anon_sym_break] = ACTIONS(871), - [anon_sym_const] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_default] = ACTIONS(871), - [anon_sym_enum] = ACTIONS(871), - [anon_sym_fn] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_gen] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_impl] = ACTIONS(871), - [anon_sym_let] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(871), - [anon_sym_match] = ACTIONS(871), - [anon_sym_mod] = ACTIONS(871), - [anon_sym_pub] = ACTIONS(871), - [anon_sym_return] = ACTIONS(871), - [anon_sym_static] = ACTIONS(871), - [anon_sym_struct] = ACTIONS(871), - [anon_sym_trait] = ACTIONS(871), - [anon_sym_type] = ACTIONS(871), - [anon_sym_union] = ACTIONS(871), - [anon_sym_unsafe] = ACTIONS(871), - [anon_sym_use] = ACTIONS(871), - [anon_sym_where] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [sym_mutable_specifier] = ACTIONS(871), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(871), - [anon_sym_false] = ACTIONS(871), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(871), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(876), - [sym__raw_string_literal_start] = ACTIONS(876), - [sym_float_literal] = ACTIONS(876), - }, - [STATE(139)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(141), + [STATE(137)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(867), [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), @@ -32821,7 +32702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(869), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32857,58 +32738,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(140)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1659), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), + [STATE(138)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), [anon_sym_LBRACK] = ACTIONS(756), @@ -32974,62 +32855,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(860), [sym_float_literal] = ACTIONS(842), }, - [STATE(141)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), + [STATE(139)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1605), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), [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(885), + [anon_sym_RBRACK] = ACTIONS(871), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33055,7 +32936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(873), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33091,62 +32972,296 @@ 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(143), + [sym_identifier] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(875), + [anon_sym_i8] = ACTIONS(875), + [anon_sym_u16] = ACTIONS(875), + [anon_sym_i16] = ACTIONS(875), + [anon_sym_u32] = ACTIONS(875), + [anon_sym_i32] = ACTIONS(875), + [anon_sym_u64] = ACTIONS(875), + [anon_sym_i64] = ACTIONS(875), + [anon_sym_u128] = ACTIONS(875), + [anon_sym_i128] = ACTIONS(875), + [anon_sym_isize] = ACTIONS(875), + [anon_sym_usize] = ACTIONS(875), + [anon_sym_f32] = ACTIONS(875), + [anon_sym_f64] = ACTIONS(875), + [anon_sym_bool] = ACTIONS(875), + [anon_sym_str] = ACTIONS(875), + [anon_sym_char] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_as] = ACTIONS(875), + [anon_sym_async] = ACTIONS(875), + [anon_sym_await] = ACTIONS(875), + [anon_sym_break] = ACTIONS(875), + [anon_sym_const] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_default] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_fn] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_gen] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_impl] = ACTIONS(875), + [anon_sym_let] = ACTIONS(875), + [anon_sym_loop] = ACTIONS(875), + [anon_sym_match] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_pub] = ACTIONS(875), + [anon_sym_return] = ACTIONS(875), + [anon_sym_static] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(875), + [anon_sym_trait] = ACTIONS(875), + [anon_sym_type] = ACTIONS(875), + [anon_sym_union] = ACTIONS(875), + [anon_sym_unsafe] = ACTIONS(875), + [anon_sym_use] = ACTIONS(875), + [anon_sym_where] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [sym_mutable_specifier] = ACTIONS(875), + [sym_integer_literal] = ACTIONS(877), + [aux_sym_string_literal_token1] = ACTIONS(877), + [sym_char_literal] = ACTIONS(877), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(875), + [sym_super] = ACTIONS(875), + [sym_crate] = ACTIONS(875), + [sym_metavariable] = ACTIONS(877), + [sym__raw_string_literal_start] = ACTIONS(877), + [sym_float_literal] = ACTIONS(877), + }, + [STATE(141)] = { + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(879), + [anon_sym_i8] = ACTIONS(879), + [anon_sym_u16] = ACTIONS(879), + [anon_sym_i16] = ACTIONS(879), + [anon_sym_u32] = ACTIONS(879), + [anon_sym_i32] = ACTIONS(879), + [anon_sym_u64] = ACTIONS(879), + [anon_sym_i64] = ACTIONS(879), + [anon_sym_u128] = ACTIONS(879), + [anon_sym_i128] = ACTIONS(879), + [anon_sym_isize] = ACTIONS(879), + [anon_sym_usize] = ACTIONS(879), + [anon_sym_f32] = ACTIONS(879), + [anon_sym_f64] = ACTIONS(879), + [anon_sym_bool] = ACTIONS(879), + [anon_sym_str] = ACTIONS(879), + [anon_sym_char] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(879), + [anon_sym_as] = ACTIONS(879), + [anon_sym_async] = ACTIONS(879), + [anon_sym_await] = ACTIONS(879), + [anon_sym_break] = ACTIONS(879), + [anon_sym_const] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_default] = ACTIONS(879), + [anon_sym_enum] = ACTIONS(879), + [anon_sym_fn] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_gen] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_impl] = ACTIONS(879), + [anon_sym_let] = ACTIONS(879), + [anon_sym_loop] = ACTIONS(879), + [anon_sym_match] = ACTIONS(879), + [anon_sym_mod] = ACTIONS(879), + [anon_sym_pub] = ACTIONS(879), + [anon_sym_return] = ACTIONS(879), + [anon_sym_static] = ACTIONS(879), + [anon_sym_struct] = ACTIONS(879), + [anon_sym_trait] = ACTIONS(879), + [anon_sym_type] = ACTIONS(879), + [anon_sym_union] = ACTIONS(879), + [anon_sym_unsafe] = ACTIONS(879), + [anon_sym_use] = ACTIONS(879), + [anon_sym_where] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [sym_mutable_specifier] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(881), + [aux_sym_string_literal_token1] = ACTIONS(881), + [sym_char_literal] = ACTIONS(881), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(879), + [sym_super] = ACTIONS(879), + [sym_crate] = ACTIONS(879), + [sym_metavariable] = ACTIONS(881), + [sym__raw_string_literal_start] = ACTIONS(881), + [sym_float_literal] = ACTIONS(881), + }, [STATE(142)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(138), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(883), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33172,7 +33287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(885), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33209,60 +33324,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(143)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(889), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_u8] = ACTIONS(887), + [anon_sym_i8] = ACTIONS(887), + [anon_sym_u16] = ACTIONS(887), + [anon_sym_i16] = ACTIONS(887), + [anon_sym_u32] = ACTIONS(887), + [anon_sym_i32] = ACTIONS(887), + [anon_sym_u64] = ACTIONS(887), + [anon_sym_i64] = ACTIONS(887), + [anon_sym_u128] = ACTIONS(887), + [anon_sym_i128] = ACTIONS(887), + [anon_sym_isize] = ACTIONS(887), + [anon_sym_usize] = ACTIONS(887), + [anon_sym_f32] = ACTIONS(887), + [anon_sym_f64] = ACTIONS(887), + [anon_sym_bool] = ACTIONS(887), + [anon_sym_str] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_PERCENT] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), + [anon_sym__] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_COLON_COLON] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_as] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_await] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_fn] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_gen] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_impl] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_loop] = ACTIONS(887), + [anon_sym_match] = ACTIONS(887), + [anon_sym_mod] = ACTIONS(887), + [anon_sym_pub] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_struct] = ACTIONS(887), + [anon_sym_trait] = ACTIONS(887), + [anon_sym_type] = ACTIONS(887), + [anon_sym_union] = ACTIONS(887), + [anon_sym_unsafe] = ACTIONS(887), + [anon_sym_use] = ACTIONS(887), + [anon_sym_where] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [sym_mutable_specifier] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(887), + [anon_sym_false] = ACTIONS(887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_crate] = ACTIONS(887), + [sym_metavariable] = ACTIONS(892), + [sym__raw_string_literal_start] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), + }, + [STATE(144)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -33289,7 +33521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(899), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33325,358 +33557,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(144)] = { - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym__non_special_token_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [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(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), - }, [STATE(145)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2582), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [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), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [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_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), [anon_sym_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), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), + [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(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(146)] = { [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_EQ_GT] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_QMARK] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(905), - [anon_sym_i8] = ACTIONS(905), - [anon_sym_u16] = ACTIONS(905), - [anon_sym_i16] = ACTIONS(905), - [anon_sym_u32] = ACTIONS(905), - [anon_sym_i32] = ACTIONS(905), - [anon_sym_u64] = ACTIONS(905), - [anon_sym_i64] = ACTIONS(905), - [anon_sym_u128] = ACTIONS(905), - [anon_sym_i128] = ACTIONS(905), - [anon_sym_isize] = ACTIONS(905), - [anon_sym_usize] = ACTIONS(905), - [anon_sym_f32] = ACTIONS(905), - [anon_sym_f64] = ACTIONS(905), - [anon_sym_bool] = ACTIONS(905), - [anon_sym_str] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(905), - [anon_sym_PERCENT] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - [anon_sym_STAR_EQ] = ACTIONS(907), - [anon_sym_SLASH_EQ] = ACTIONS(907), - [anon_sym_PERCENT_EQ] = ACTIONS(907), - [anon_sym_CARET_EQ] = ACTIONS(907), - [anon_sym_AMP_EQ] = ACTIONS(907), - [anon_sym_PIPE_EQ] = ACTIONS(907), - [anon_sym_LT_LT_EQ] = ACTIONS(907), - [anon_sym_GT_GT_EQ] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), - [anon_sym__] = ACTIONS(905), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(907), - [anon_sym_DASH_GT] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(907), - [anon_sym_SQUOTE] = ACTIONS(905), - [anon_sym_as] = ACTIONS(905), - [anon_sym_async] = ACTIONS(905), - [anon_sym_await] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_const] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_fn] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_gen] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_impl] = ACTIONS(905), - [anon_sym_let] = ACTIONS(905), - [anon_sym_loop] = ACTIONS(905), - [anon_sym_match] = ACTIONS(905), - [anon_sym_mod] = ACTIONS(905), - [anon_sym_pub] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_struct] = ACTIONS(905), - [anon_sym_trait] = ACTIONS(905), - [anon_sym_type] = ACTIONS(905), - [anon_sym_union] = ACTIONS(905), - [anon_sym_unsafe] = ACTIONS(905), - [anon_sym_use] = ACTIONS(905), - [anon_sym_where] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [sym_mutable_specifier] = ACTIONS(905), - [sym_integer_literal] = ACTIONS(907), - [aux_sym_string_literal_token1] = ACTIONS(907), - [sym_char_literal] = ACTIONS(907), - [anon_sym_true] = ACTIONS(905), - [anon_sym_false] = ACTIONS(905), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(905), - [sym_super] = ACTIONS(905), - [sym_crate] = ACTIONS(905), - [sym_metavariable] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(907), - [sym_float_literal] = ACTIONS(907), - }, - [STATE(147)] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), [sym_identifier] = ACTIONS(909), [anon_sym_SEMI] = ACTIONS(911), [anon_sym_LPAREN] = ACTIONS(911), @@ -33790,62 +33789,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(911), [sym_float_literal] = ACTIONS(911), }, - [STATE(148)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(147)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(913), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(913), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33906,241 +33905,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(148)] = { + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [sym_identifier] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_EQ_GT] = ACTIONS(917), + [anon_sym_COLON] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_u8] = ACTIONS(915), + [anon_sym_i8] = ACTIONS(915), + [anon_sym_u16] = ACTIONS(915), + [anon_sym_i16] = ACTIONS(915), + [anon_sym_u32] = ACTIONS(915), + [anon_sym_i32] = ACTIONS(915), + [anon_sym_u64] = ACTIONS(915), + [anon_sym_i64] = ACTIONS(915), + [anon_sym_u128] = ACTIONS(915), + [anon_sym_i128] = ACTIONS(915), + [anon_sym_isize] = ACTIONS(915), + [anon_sym_usize] = ACTIONS(915), + [anon_sym_f32] = ACTIONS(915), + [anon_sym_f64] = ACTIONS(915), + [anon_sym_bool] = ACTIONS(915), + [anon_sym_str] = ACTIONS(915), + [anon_sym_char] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_STAR_EQ] = ACTIONS(917), + [anon_sym_SLASH_EQ] = ACTIONS(917), + [anon_sym_PERCENT_EQ] = ACTIONS(917), + [anon_sym_CARET_EQ] = ACTIONS(917), + [anon_sym_AMP_EQ] = ACTIONS(917), + [anon_sym_PIPE_EQ] = ACTIONS(917), + [anon_sym_LT_LT_EQ] = ACTIONS(917), + [anon_sym_GT_GT_EQ] = ACTIONS(917), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(917), + [anon_sym__] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_COLON_COLON] = ACTIONS(917), + [anon_sym_DASH_GT] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_async] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_fn] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_gen] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_impl] = ACTIONS(915), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mod] = ACTIONS(915), + [anon_sym_pub] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_static] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_type] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_unsafe] = ACTIONS(915), + [anon_sym_use] = ACTIONS(915), + [anon_sym_where] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [sym_mutable_specifier] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(917), + [aux_sym_string_literal_token1] = ACTIONS(917), + [sym_char_literal] = ACTIONS(917), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_crate] = ACTIONS(915), + [sym_metavariable] = ACTIONS(917), + [sym__raw_string_literal_start] = ACTIONS(917), + [sym_float_literal] = ACTIONS(917), + }, [STATE(149)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [aux_sym_enum_variant_list_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(915), - [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(150)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1778), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym_enum_variant_list_repeat1] = STATE(198), - [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), @@ -34254,62 +34137,294 @@ 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(150)] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [sym_identifier] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(923), + [anon_sym_i8] = ACTIONS(923), + [anon_sym_u16] = ACTIONS(923), + [anon_sym_i16] = ACTIONS(923), + [anon_sym_u32] = ACTIONS(923), + [anon_sym_i32] = ACTIONS(923), + [anon_sym_u64] = ACTIONS(923), + [anon_sym_i64] = ACTIONS(923), + [anon_sym_u128] = ACTIONS(923), + [anon_sym_i128] = ACTIONS(923), + [anon_sym_isize] = ACTIONS(923), + [anon_sym_usize] = ACTIONS(923), + [anon_sym_f32] = ACTIONS(923), + [anon_sym_f64] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_str] = ACTIONS(923), + [anon_sym_char] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_STAR_EQ] = ACTIONS(925), + [anon_sym_SLASH_EQ] = ACTIONS(925), + [anon_sym_PERCENT_EQ] = ACTIONS(925), + [anon_sym_CARET_EQ] = ACTIONS(925), + [anon_sym_AMP_EQ] = ACTIONS(925), + [anon_sym_PIPE_EQ] = ACTIONS(925), + [anon_sym_LT_LT_EQ] = ACTIONS(925), + [anon_sym_GT_GT_EQ] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym__] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_COLON_COLON] = ACTIONS(925), + [anon_sym_DASH_GT] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_as] = ACTIONS(923), + [anon_sym_async] = ACTIONS(923), + [anon_sym_await] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_enum] = ACTIONS(923), + [anon_sym_fn] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_gen] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_impl] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_pub] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_static] = ACTIONS(923), + [anon_sym_struct] = ACTIONS(923), + [anon_sym_trait] = ACTIONS(923), + [anon_sym_type] = ACTIONS(923), + [anon_sym_union] = ACTIONS(923), + [anon_sym_unsafe] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [sym_mutable_specifier] = ACTIONS(923), + [sym_integer_literal] = ACTIONS(925), + [aux_sym_string_literal_token1] = ACTIONS(925), + [sym_char_literal] = ACTIONS(925), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(923), + [sym_super] = ACTIONS(923), + [sym_crate] = ACTIONS(923), + [sym_metavariable] = ACTIONS(925), + [sym__raw_string_literal_start] = ACTIONS(925), + [sym_float_literal] = ACTIONS(925), + }, + [STATE(151)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [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(927), + [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(152)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(929), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34371,293 +34486,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(153)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [aux_sym__non_special_token_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_u8] = ACTIONS(925), - [anon_sym_i8] = ACTIONS(925), - [anon_sym_u16] = ACTIONS(925), - [anon_sym_i16] = ACTIONS(925), - [anon_sym_u32] = ACTIONS(925), - [anon_sym_i32] = ACTIONS(925), - [anon_sym_u64] = ACTIONS(925), - [anon_sym_i64] = ACTIONS(925), - [anon_sym_u128] = ACTIONS(925), - [anon_sym_i128] = ACTIONS(925), - [anon_sym_isize] = ACTIONS(925), - [anon_sym_usize] = ACTIONS(925), - [anon_sym_f32] = ACTIONS(925), - [anon_sym_f64] = ACTIONS(925), - [anon_sym_bool] = ACTIONS(925), - [anon_sym_str] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_STAR_EQ] = ACTIONS(694), - [anon_sym_SLASH_EQ] = ACTIONS(694), - [anon_sym_PERCENT_EQ] = ACTIONS(694), - [anon_sym_CARET_EQ] = ACTIONS(694), - [anon_sym_AMP_EQ] = ACTIONS(694), - [anon_sym_PIPE_EQ] = ACTIONS(694), - [anon_sym_LT_LT_EQ] = ACTIONS(694), - [anon_sym_GT_GT_EQ] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym__] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(925), - [anon_sym_as] = ACTIONS(925), - [anon_sym_async] = ACTIONS(925), - [anon_sym_await] = ACTIONS(925), - [anon_sym_break] = ACTIONS(925), - [anon_sym_const] = ACTIONS(925), - [anon_sym_continue] = ACTIONS(925), - [anon_sym_default] = ACTIONS(925), - [anon_sym_enum] = ACTIONS(925), - [anon_sym_fn] = ACTIONS(925), - [anon_sym_for] = ACTIONS(925), - [anon_sym_gen] = ACTIONS(925), - [anon_sym_if] = ACTIONS(925), - [anon_sym_impl] = ACTIONS(925), - [anon_sym_let] = ACTIONS(925), - [anon_sym_loop] = ACTIONS(925), - [anon_sym_match] = ACTIONS(925), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_pub] = ACTIONS(925), - [anon_sym_return] = ACTIONS(925), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(925), - [anon_sym_trait] = ACTIONS(925), - [anon_sym_type] = ACTIONS(925), - [anon_sym_union] = ACTIONS(925), - [anon_sym_unsafe] = ACTIONS(925), - [anon_sym_use] = ACTIONS(925), - [anon_sym_where] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [sym_mutable_specifier] = ACTIONS(925), - [sym_integer_literal] = ACTIONS(927), - [aux_sym_string_literal_token1] = ACTIONS(927), - [sym_char_literal] = ACTIONS(927), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(925), - [sym_super] = ACTIONS(925), - [sym_crate] = ACTIONS(925), - [sym__raw_string_literal_start] = ACTIONS(927), - [sym_float_literal] = ACTIONS(927), + [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(931), + [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(154)] = { [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_COLON] = ACTIONS(929), - [anon_sym_DOLLAR] = ACTIONS(929), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_QMARK] = ACTIONS(931), - [anon_sym_u8] = ACTIONS(929), - [anon_sym_i8] = ACTIONS(929), - [anon_sym_u16] = ACTIONS(929), - [anon_sym_i16] = ACTIONS(929), - [anon_sym_u32] = ACTIONS(929), - [anon_sym_i32] = ACTIONS(929), - [anon_sym_u64] = ACTIONS(929), - [anon_sym_i64] = ACTIONS(929), - [anon_sym_u128] = ACTIONS(929), - [anon_sym_i128] = ACTIONS(929), - [anon_sym_isize] = ACTIONS(929), - [anon_sym_usize] = ACTIONS(929), - [anon_sym_f32] = ACTIONS(929), - [anon_sym_f64] = ACTIONS(929), - [anon_sym_bool] = ACTIONS(929), - [anon_sym_str] = ACTIONS(929), - [anon_sym_char] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(929), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_AMP] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym__] = ACTIONS(929), - [anon_sym_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(931), - [anon_sym_SQUOTE] = ACTIONS(929), - [anon_sym_as] = ACTIONS(929), - [anon_sym_async] = ACTIONS(929), - [anon_sym_await] = ACTIONS(929), - [anon_sym_break] = ACTIONS(929), - [anon_sym_const] = ACTIONS(929), - [anon_sym_continue] = ACTIONS(929), - [anon_sym_default] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(929), - [anon_sym_fn] = ACTIONS(929), - [anon_sym_for] = ACTIONS(929), - [anon_sym_gen] = ACTIONS(929), - [anon_sym_if] = ACTIONS(929), - [anon_sym_impl] = ACTIONS(929), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(929), - [anon_sym_match] = ACTIONS(929), - [anon_sym_mod] = ACTIONS(929), - [anon_sym_pub] = ACTIONS(929), - [anon_sym_return] = ACTIONS(929), - [anon_sym_static] = ACTIONS(929), - [anon_sym_struct] = ACTIONS(929), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(929), - [anon_sym_union] = ACTIONS(929), - [anon_sym_unsafe] = ACTIONS(929), - [anon_sym_use] = ACTIONS(929), - [anon_sym_where] = ACTIONS(929), - [anon_sym_while] = ACTIONS(929), - [sym_mutable_specifier] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(931), - [aux_sym_string_literal_token1] = ACTIONS(931), - [sym_char_literal] = ACTIONS(931), - [anon_sym_true] = ACTIONS(929), - [anon_sym_false] = ACTIONS(929), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(929), - [sym_super] = ACTIONS(929), - [sym_crate] = ACTIONS(929), - [sym_metavariable] = ACTIONS(931), - [sym__raw_string_literal_start] = ACTIONS(931), - [sym_float_literal] = ACTIONS(931), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_EQ_GT] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_u8] = ACTIONS(933), + [anon_sym_i8] = ACTIONS(933), + [anon_sym_u16] = ACTIONS(933), + [anon_sym_i16] = ACTIONS(933), + [anon_sym_u32] = ACTIONS(933), + [anon_sym_i32] = ACTIONS(933), + [anon_sym_u64] = ACTIONS(933), + [anon_sym_i64] = ACTIONS(933), + [anon_sym_u128] = ACTIONS(933), + [anon_sym_i128] = ACTIONS(933), + [anon_sym_isize] = ACTIONS(933), + [anon_sym_usize] = ACTIONS(933), + [anon_sym_f32] = ACTIONS(933), + [anon_sym_f64] = ACTIONS(933), + [anon_sym_bool] = ACTIONS(933), + [anon_sym_str] = ACTIONS(933), + [anon_sym_char] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_STAR_EQ] = ACTIONS(935), + [anon_sym_SLASH_EQ] = ACTIONS(935), + [anon_sym_PERCENT_EQ] = ACTIONS(935), + [anon_sym_CARET_EQ] = ACTIONS(935), + [anon_sym_AMP_EQ] = ACTIONS(935), + [anon_sym_PIPE_EQ] = ACTIONS(935), + [anon_sym_LT_LT_EQ] = ACTIONS(935), + [anon_sym_GT_GT_EQ] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [anon_sym__] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_COLON_COLON] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_await] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_default] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_gen] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_pub] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_static] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_trait] = ACTIONS(933), + [anon_sym_type] = ACTIONS(933), + [anon_sym_union] = ACTIONS(933), + [anon_sym_unsafe] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [sym_mutable_specifier] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(935), + [aux_sym_string_literal_token1] = ACTIONS(935), + [sym_char_literal] = ACTIONS(935), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_crate] = ACTIONS(933), + [sym_metavariable] = ACTIONS(935), + [sym__raw_string_literal_start] = ACTIONS(935), + [sym_float_literal] = ACTIONS(935), }, [STATE(155)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(937), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34721,220 +34836,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(156)] = { [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_gen] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym_metavariable] = ACTIONS(937), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_u8] = ACTIONS(939), + [anon_sym_i8] = ACTIONS(939), + [anon_sym_u16] = ACTIONS(939), + [anon_sym_i16] = ACTIONS(939), + [anon_sym_u32] = ACTIONS(939), + [anon_sym_i32] = ACTIONS(939), + [anon_sym_u64] = ACTIONS(939), + [anon_sym_i64] = ACTIONS(939), + [anon_sym_u128] = ACTIONS(939), + [anon_sym_i128] = ACTIONS(939), + [anon_sym_isize] = ACTIONS(939), + [anon_sym_usize] = ACTIONS(939), + [anon_sym_f32] = ACTIONS(939), + [anon_sym_f64] = ACTIONS(939), + [anon_sym_bool] = ACTIONS(939), + [anon_sym_str] = ACTIONS(939), + [anon_sym_char] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(941), + [anon_sym_DASH_EQ] = ACTIONS(941), + [anon_sym_STAR_EQ] = ACTIONS(941), + [anon_sym_SLASH_EQ] = ACTIONS(941), + [anon_sym_PERCENT_EQ] = ACTIONS(941), + [anon_sym_CARET_EQ] = ACTIONS(941), + [anon_sym_AMP_EQ] = ACTIONS(941), + [anon_sym_PIPE_EQ] = ACTIONS(941), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_GT_GT_EQ] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(941), + [anon_sym__] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_COLON_COLON] = ACTIONS(941), + [anon_sym_DASH_GT] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_as] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_await] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_fn] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_gen] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_impl] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_pub] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_static] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(939), + [anon_sym_trait] = ACTIONS(939), + [anon_sym_type] = ACTIONS(939), + [anon_sym_union] = ACTIONS(939), + [anon_sym_unsafe] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [sym_mutable_specifier] = ACTIONS(939), + [sym_integer_literal] = ACTIONS(941), + [aux_sym_string_literal_token1] = ACTIONS(941), + [sym_char_literal] = ACTIONS(941), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_crate] = ACTIONS(939), + [sym_metavariable] = ACTIONS(941), + [sym__raw_string_literal_start] = ACTIONS(941), + [sym_float_literal] = ACTIONS(941), }, [STATE(157)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2699), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2682), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -34951,177 +35066,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(158)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [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(159)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(943), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35182,409 +35181,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(159)] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [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_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [sym_identifier] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_EQ_GT] = ACTIONS(955), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_u8] = ACTIONS(953), - [anon_sym_i8] = ACTIONS(953), - [anon_sym_u16] = ACTIONS(953), - [anon_sym_i16] = ACTIONS(953), - [anon_sym_u32] = ACTIONS(953), - [anon_sym_i32] = ACTIONS(953), - [anon_sym_u64] = ACTIONS(953), - [anon_sym_i64] = ACTIONS(953), - [anon_sym_u128] = ACTIONS(953), - [anon_sym_i128] = ACTIONS(953), - [anon_sym_isize] = ACTIONS(953), - [anon_sym_usize] = ACTIONS(953), - [anon_sym_f32] = ACTIONS(953), - [anon_sym_f64] = ACTIONS(953), - [anon_sym_bool] = ACTIONS(953), - [anon_sym_str] = ACTIONS(953), - [anon_sym_char] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(953), - [anon_sym_CARET] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(955), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_PERCENT_EQ] = ACTIONS(955), - [anon_sym_CARET_EQ] = ACTIONS(955), - [anon_sym_AMP_EQ] = ACTIONS(955), - [anon_sym_PIPE_EQ] = ACTIONS(955), - [anon_sym_LT_LT_EQ] = ACTIONS(955), - [anon_sym_GT_GT_EQ] = ACTIONS(955), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(955), - [anon_sym__] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_COLON_COLON] = ACTIONS(955), - [anon_sym_DASH_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_await] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [anon_sym_fn] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_gen] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_impl] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_pub] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_static] = ACTIONS(953), - [anon_sym_struct] = ACTIONS(953), - [anon_sym_trait] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_union] = ACTIONS(953), - [anon_sym_unsafe] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_where] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [sym_mutable_specifier] = ACTIONS(953), - [sym_integer_literal] = ACTIONS(955), - [aux_sym_string_literal_token1] = ACTIONS(955), - [sym_char_literal] = ACTIONS(955), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_crate] = ACTIONS(953), - [sym_metavariable] = ACTIONS(955), - [sym__raw_string_literal_start] = ACTIONS(955), - [sym_float_literal] = ACTIONS(955), + [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(949), + [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(161)] = { [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym_identifier] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_COLON] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(957), - [anon_sym_i8] = ACTIONS(957), - [anon_sym_u16] = ACTIONS(957), - [anon_sym_i16] = ACTIONS(957), - [anon_sym_u32] = ACTIONS(957), - [anon_sym_i32] = ACTIONS(957), - [anon_sym_u64] = ACTIONS(957), - [anon_sym_i64] = ACTIONS(957), - [anon_sym_u128] = ACTIONS(957), - [anon_sym_i128] = ACTIONS(957), - [anon_sym_isize] = ACTIONS(957), - [anon_sym_usize] = ACTIONS(957), - [anon_sym_f32] = ACTIONS(957), - [anon_sym_f64] = ACTIONS(957), - [anon_sym_bool] = ACTIONS(957), - [anon_sym_str] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_SLASH] = ACTIONS(957), - [anon_sym_PERCENT] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_PLUS_EQ] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(959), - [anon_sym_SLASH_EQ] = ACTIONS(959), - [anon_sym_PERCENT_EQ] = ACTIONS(959), - [anon_sym_CARET_EQ] = ACTIONS(959), - [anon_sym_AMP_EQ] = ACTIONS(959), - [anon_sym_PIPE_EQ] = ACTIONS(959), - [anon_sym_LT_LT_EQ] = ACTIONS(959), - [anon_sym_GT_GT_EQ] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym__] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_COLON_COLON] = ACTIONS(959), - [anon_sym_DASH_GT] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(957), - [anon_sym_as] = ACTIONS(957), - [anon_sym_async] = ACTIONS(957), - [anon_sym_await] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_const] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [anon_sym_fn] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_gen] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_impl] = ACTIONS(957), - [anon_sym_let] = ACTIONS(957), - [anon_sym_loop] = ACTIONS(957), - [anon_sym_match] = ACTIONS(957), - [anon_sym_mod] = ACTIONS(957), - [anon_sym_pub] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(957), - [anon_sym_trait] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_union] = ACTIONS(957), - [anon_sym_unsafe] = ACTIONS(957), - [anon_sym_use] = ACTIONS(957), - [anon_sym_where] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [sym_mutable_specifier] = ACTIONS(957), - [sym_integer_literal] = ACTIONS(959), - [aux_sym_string_literal_token1] = ACTIONS(959), - [sym_char_literal] = ACTIONS(959), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(957), - [sym_super] = ACTIONS(957), - [sym_crate] = ACTIONS(957), - [sym_metavariable] = ACTIONS(959), - [sym__raw_string_literal_start] = ACTIONS(959), - [sym_float_literal] = ACTIONS(959), + [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(162)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_let_condition] = STATE(3098), - [sym__let_chain] = STATE(3227), - [sym__condition] = STATE(3666), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), + [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(163)] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [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(164)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(963), + [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(965), - [anon_sym_COLON_COLON] = ACTIONS(415), + [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(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(967), - [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(163)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(165)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(965), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35646,9 +35993,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(164)] = { - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), + [STATE(166)] = { + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_EQ_GT] = ACTIONS(969), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(969), + [anon_sym_u8] = ACTIONS(967), + [anon_sym_i8] = ACTIONS(967), + [anon_sym_u16] = ACTIONS(967), + [anon_sym_i16] = ACTIONS(967), + [anon_sym_u32] = ACTIONS(967), + [anon_sym_i32] = ACTIONS(967), + [anon_sym_u64] = ACTIONS(967), + [anon_sym_i64] = ACTIONS(967), + [anon_sym_u128] = ACTIONS(967), + [anon_sym_i128] = ACTIONS(967), + [anon_sym_isize] = ACTIONS(967), + [anon_sym_usize] = ACTIONS(967), + [anon_sym_f32] = ACTIONS(967), + [anon_sym_f64] = ACTIONS(967), + [anon_sym_bool] = ACTIONS(967), + [anon_sym_str] = ACTIONS(967), + [anon_sym_char] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE_PIPE] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PERCENT_EQ] = ACTIONS(969), + [anon_sym_CARET_EQ] = ACTIONS(969), + [anon_sym_AMP_EQ] = ACTIONS(969), + [anon_sym_PIPE_EQ] = ACTIONS(969), + [anon_sym_LT_LT_EQ] = ACTIONS(969), + [anon_sym_GT_GT_EQ] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(969), + [anon_sym_BANG_EQ] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), + [anon_sym__] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(969), + [anon_sym_COLON_COLON] = ACTIONS(969), + [anon_sym_DASH_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_async] = ACTIONS(967), + [anon_sym_await] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_default] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(967), + [anon_sym_fn] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_gen] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_impl] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_mod] = ACTIONS(967), + [anon_sym_pub] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_static] = ACTIONS(967), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_trait] = ACTIONS(967), + [anon_sym_type] = ACTIONS(967), + [anon_sym_union] = ACTIONS(967), + [anon_sym_unsafe] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_where] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [sym_mutable_specifier] = ACTIONS(967), + [sym_integer_literal] = ACTIONS(969), + [aux_sym_string_literal_token1] = ACTIONS(969), + [sym_char_literal] = ACTIONS(969), + [anon_sym_true] = ACTIONS(967), + [anon_sym_false] = ACTIONS(967), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(967), + [sym_super] = ACTIONS(967), + [sym_crate] = ACTIONS(967), + [sym_metavariable] = ACTIONS(969), + [sym__raw_string_literal_start] = ACTIONS(969), + [sym_float_literal] = ACTIONS(969), + }, + [STATE(167)] = { + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), [sym_identifier] = ACTIONS(971), [anon_sym_SEMI] = ACTIONS(973), [anon_sym_LPAREN] = ACTIONS(973), @@ -35762,294 +36225,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(973), [sym_float_literal] = ACTIONS(973), }, - [STATE(165)] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [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(166)] = { - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [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(167)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(168)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(979), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(975), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36110,241 +36341,589 @@ 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(168)] = { - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_RBRACK] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_EQ_GT] = ACTIONS(983), - [anon_sym_COLON] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_STAR] = ACTIONS(981), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_u8] = ACTIONS(981), - [anon_sym_i8] = ACTIONS(981), - [anon_sym_u16] = ACTIONS(981), - [anon_sym_i16] = ACTIONS(981), - [anon_sym_u32] = ACTIONS(981), - [anon_sym_i32] = ACTIONS(981), - [anon_sym_u64] = ACTIONS(981), - [anon_sym_i64] = ACTIONS(981), - [anon_sym_u128] = ACTIONS(981), - [anon_sym_i128] = ACTIONS(981), - [anon_sym_isize] = ACTIONS(981), - [anon_sym_usize] = ACTIONS(981), - [anon_sym_f32] = ACTIONS(981), - [anon_sym_f64] = ACTIONS(981), - [anon_sym_bool] = ACTIONS(981), - [anon_sym_str] = ACTIONS(981), - [anon_sym_char] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_PLUS_EQ] = ACTIONS(983), - [anon_sym_DASH_EQ] = ACTIONS(983), - [anon_sym_STAR_EQ] = ACTIONS(983), - [anon_sym_SLASH_EQ] = ACTIONS(983), - [anon_sym_PERCENT_EQ] = ACTIONS(983), - [anon_sym_CARET_EQ] = ACTIONS(983), - [anon_sym_AMP_EQ] = ACTIONS(983), - [anon_sym_PIPE_EQ] = ACTIONS(983), - [anon_sym_LT_LT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_EQ] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), - [anon_sym__] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(983), - [anon_sym_DASH_GT] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(981), - [anon_sym_as] = ACTIONS(981), - [anon_sym_async] = ACTIONS(981), - [anon_sym_await] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_const] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_default] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_gen] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_impl] = ACTIONS(981), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(981), - [anon_sym_match] = ACTIONS(981), - [anon_sym_mod] = ACTIONS(981), - [anon_sym_pub] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_static] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(981), - [anon_sym_type] = ACTIONS(981), - [anon_sym_union] = ACTIONS(981), - [anon_sym_unsafe] = ACTIONS(981), - [anon_sym_use] = ACTIONS(981), - [anon_sym_where] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [sym_mutable_specifier] = ACTIONS(981), - [sym_integer_literal] = ACTIONS(983), - [aux_sym_string_literal_token1] = ACTIONS(983), - [sym_char_literal] = ACTIONS(983), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(981), - [sym_super] = ACTIONS(981), - [sym_crate] = ACTIONS(981), - [sym_metavariable] = ACTIONS(983), - [sym__raw_string_literal_start] = ACTIONS(983), - [sym_float_literal] = ACTIONS(983), - }, [STATE(169)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_gen] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym_metavariable] = ACTIONS(987), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), + [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(977), + [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(170)] = { [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), + [sym_identifier] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_EQ_GT] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_u8] = ACTIONS(875), + [anon_sym_i8] = ACTIONS(875), + [anon_sym_u16] = ACTIONS(875), + [anon_sym_i16] = ACTIONS(875), + [anon_sym_u32] = ACTIONS(875), + [anon_sym_i32] = ACTIONS(875), + [anon_sym_u64] = ACTIONS(875), + [anon_sym_i64] = ACTIONS(875), + [anon_sym_u128] = ACTIONS(875), + [anon_sym_i128] = ACTIONS(875), + [anon_sym_isize] = ACTIONS(875), + [anon_sym_usize] = ACTIONS(875), + [anon_sym_f32] = ACTIONS(875), + [anon_sym_f64] = ACTIONS(875), + [anon_sym_bool] = ACTIONS(875), + [anon_sym_str] = ACTIONS(875), + [anon_sym_char] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_LT_LT] = ACTIONS(875), + [anon_sym_GT_GT] = ACTIONS(875), + [anon_sym_PLUS_EQ] = ACTIONS(877), + [anon_sym_DASH_EQ] = ACTIONS(877), + [anon_sym_STAR_EQ] = ACTIONS(877), + [anon_sym_SLASH_EQ] = ACTIONS(877), + [anon_sym_PERCENT_EQ] = ACTIONS(877), + [anon_sym_CARET_EQ] = ACTIONS(877), + [anon_sym_AMP_EQ] = ACTIONS(877), + [anon_sym_PIPE_EQ] = ACTIONS(877), + [anon_sym_LT_LT_EQ] = ACTIONS(877), + [anon_sym_GT_GT_EQ] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [anon_sym__] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_DOT_DOT] = ACTIONS(875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_COLON_COLON] = ACTIONS(877), + [anon_sym_DASH_GT] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_as] = ACTIONS(875), + [anon_sym_async] = ACTIONS(875), + [anon_sym_await] = ACTIONS(875), + [anon_sym_break] = ACTIONS(875), + [anon_sym_const] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_default] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_fn] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_gen] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_impl] = ACTIONS(875), + [anon_sym_let] = ACTIONS(875), + [anon_sym_loop] = ACTIONS(875), + [anon_sym_match] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_pub] = ACTIONS(875), + [anon_sym_return] = ACTIONS(875), + [anon_sym_static] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(875), + [anon_sym_trait] = ACTIONS(875), + [anon_sym_type] = ACTIONS(875), + [anon_sym_union] = ACTIONS(875), + [anon_sym_unsafe] = ACTIONS(875), + [anon_sym_use] = ACTIONS(875), + [anon_sym_where] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [sym_mutable_specifier] = ACTIONS(875), + [sym_integer_literal] = ACTIONS(877), + [aux_sym_string_literal_token1] = ACTIONS(877), + [sym_char_literal] = ACTIONS(877), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(875), + [sym_super] = ACTIONS(875), + [sym_crate] = ACTIONS(875), + [sym_metavariable] = ACTIONS(877), + [sym__raw_string_literal_start] = ACTIONS(877), + [sym_float_literal] = ACTIONS(877), + }, + [STATE(171)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_let_condition] = STATE(3204), + [sym__let_chain] = STATE(3206), + [sym__condition] = STATE(3612), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(983), + [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(985), + [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(172)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(987), + [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(173)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2710), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), + [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(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(174)] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), [sym_identifier] = ACTIONS(989), [anon_sym_SEMI] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(991), @@ -36458,473 +37037,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(991), [sym_float_literal] = ACTIONS(991), }, - [STATE(171)] = { - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), - }, - [STATE(172)] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), + [STATE(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [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(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_as] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_gen] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_static] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [sym_mutable_specifier] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), + [sym__raw_string_literal_start] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), }, - [STATE(173)] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_EQ_GT] = ACTIONS(997), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u128] = ACTIONS(995), - [anon_sym_i128] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_str] = ACTIONS(995), - [anon_sym_char] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PERCENT_EQ] = ACTIONS(997), - [anon_sym_CARET_EQ] = ACTIONS(997), - [anon_sym_AMP_EQ] = ACTIONS(997), - [anon_sym_PIPE_EQ] = ACTIONS(997), - [anon_sym_LT_LT_EQ] = ACTIONS(997), - [anon_sym_GT_GT_EQ] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [anon_sym__] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_COLON_COLON] = ACTIONS(997), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(997), - [anon_sym_SQUOTE] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_async] = ACTIONS(995), - [anon_sym_await] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_default] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_fn] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_gen] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_impl] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_trait] = ACTIONS(995), - [anon_sym_type] = ACTIONS(995), - [anon_sym_union] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [sym_mutable_specifier] = ACTIONS(995), - [sym_integer_literal] = ACTIONS(997), - [aux_sym_string_literal_token1] = ACTIONS(997), - [sym_char_literal] = ACTIONS(997), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(995), - [sym_super] = ACTIONS(995), - [sym_crate] = ACTIONS(995), - [sym_metavariable] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(997), - [sym_float_literal] = ACTIONS(997), + [STATE(176)] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_gen] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym_metavariable] = ACTIONS(999), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), }, - [STATE(174)] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), + [STATE(177)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), [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), + [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(175)] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), + [STATE(178)] = { + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), [sym_identifier] = ACTIONS(1003), [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1005), @@ -37038,62 +37501,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1005), [sym_float_literal] = ACTIONS(1005), }, - [STATE(176)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(179)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1007), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37154,125 +37617,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(177)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2786), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [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(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(178)] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), + [STATE(180)] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), [sym_identifier] = ACTIONS(1009), [anon_sym_SEMI] = ACTIONS(1011), [anon_sym_LPAREN] = ACTIONS(1011), @@ -37386,139 +37733,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1011), [sym_float_literal] = ACTIONS(1011), }, - [STATE(179)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2694), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [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(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(180)] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), + [STATE(181)] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [aux_sym__non_special_token_repeat1] = STATE(189), [sym_identifier] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(676), [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(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), [anon_sym_u8] = ACTIONS(1013), [anon_sym_i8] = ACTIONS(1013), [anon_sym_u16] = ACTIONS(1013), @@ -37536,44 +37768,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(1013), [anon_sym_as] = ACTIONS(1013), [anon_sym_async] = ACTIONS(1013), @@ -37614,65 +37846,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1013), [sym_super] = ACTIONS(1013), [sym_crate] = ACTIONS(1013), - [sym_metavariable] = ACTIONS(1015), [sym__raw_string_literal_start] = ACTIONS(1015), [sym_float_literal] = ACTIONS(1015), }, - [STATE(181)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(182)] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_identifier] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_RBRACK] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_COLON] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(1017), + [anon_sym_i8] = ACTIONS(1017), + [anon_sym_u16] = ACTIONS(1017), + [anon_sym_i16] = ACTIONS(1017), + [anon_sym_u32] = ACTIONS(1017), + [anon_sym_i32] = ACTIONS(1017), + [anon_sym_u64] = ACTIONS(1017), + [anon_sym_i64] = ACTIONS(1017), + [anon_sym_u128] = ACTIONS(1017), + [anon_sym_i128] = ACTIONS(1017), + [anon_sym_isize] = ACTIONS(1017), + [anon_sym_usize] = ACTIONS(1017), + [anon_sym_f32] = ACTIONS(1017), + [anon_sym_f64] = ACTIONS(1017), + [anon_sym_bool] = ACTIONS(1017), + [anon_sym_str] = ACTIONS(1017), + [anon_sym_char] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1017), + [anon_sym_PERCENT] = ACTIONS(1017), + [anon_sym_CARET] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_AMP_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1019), + [anon_sym_LT_LT] = ACTIONS(1017), + [anon_sym_GT_GT] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1019), + [anon_sym_DASH_EQ] = ACTIONS(1019), + [anon_sym_STAR_EQ] = ACTIONS(1019), + [anon_sym_SLASH_EQ] = ACTIONS(1019), + [anon_sym_PERCENT_EQ] = ACTIONS(1019), + [anon_sym_CARET_EQ] = ACTIONS(1019), + [anon_sym_AMP_EQ] = ACTIONS(1019), + [anon_sym_PIPE_EQ] = ACTIONS(1019), + [anon_sym_LT_LT_EQ] = ACTIONS(1019), + [anon_sym_GT_GT_EQ] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_EQ_EQ] = ACTIONS(1019), + [anon_sym_BANG_EQ] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1019), + [anon_sym_LT_EQ] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(1019), + [anon_sym__] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1019), + [anon_sym_COLON_COLON] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1019), + [anon_sym_POUND] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1017), + [anon_sym_await] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_default] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_fn] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_gen] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_impl] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_mod] = ACTIONS(1017), + [anon_sym_pub] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_static] = ACTIONS(1017), + [anon_sym_struct] = ACTIONS(1017), + [anon_sym_trait] = ACTIONS(1017), + [anon_sym_type] = ACTIONS(1017), + [anon_sym_union] = ACTIONS(1017), + [anon_sym_unsafe] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_where] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [sym_mutable_specifier] = ACTIONS(1017), + [sym_integer_literal] = ACTIONS(1019), + [aux_sym_string_literal_token1] = ACTIONS(1019), + [sym_char_literal] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1017), + [sym_super] = ACTIONS(1017), + [sym_crate] = ACTIONS(1017), + [sym_metavariable] = ACTIONS(1019), + [sym__raw_string_literal_start] = ACTIONS(1019), + [sym_float_literal] = ACTIONS(1019), + }, + [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(184)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -37734,62 +38197,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(182)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(185)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [aux_sym_enum_variant_list_repeat1] = STATE(203), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1027), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1019), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37850,571 +38313,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(183)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1021), - [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(184)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1023), - [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(185)] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [aux_sym__non_special_token_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_EQ_GT] = ACTIONS(1025), - [anon_sym_COLON] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_u8] = ACTIONS(871), - [anon_sym_i8] = ACTIONS(871), - [anon_sym_u16] = ACTIONS(871), - [anon_sym_i16] = ACTIONS(871), - [anon_sym_u32] = ACTIONS(871), - [anon_sym_i32] = ACTIONS(871), - [anon_sym_u64] = ACTIONS(871), - [anon_sym_i64] = ACTIONS(871), - [anon_sym_u128] = ACTIONS(871), - [anon_sym_i128] = ACTIONS(871), - [anon_sym_isize] = ACTIONS(871), - [anon_sym_usize] = ACTIONS(871), - [anon_sym_f32] = ACTIONS(871), - [anon_sym_f64] = ACTIONS(871), - [anon_sym_bool] = ACTIONS(871), - [anon_sym_str] = ACTIONS(871), - [anon_sym_char] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_SLASH] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1028), - [anon_sym_CARET] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_AMP_AMP] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1028), - [anon_sym_GT_GT] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1025), - [anon_sym_DASH_EQ] = ACTIONS(1025), - [anon_sym_STAR_EQ] = ACTIONS(1025), - [anon_sym_SLASH_EQ] = ACTIONS(1025), - [anon_sym_PERCENT_EQ] = ACTIONS(1025), - [anon_sym_CARET_EQ] = ACTIONS(1025), - [anon_sym_AMP_EQ] = ACTIONS(1025), - [anon_sym_PIPE_EQ] = ACTIONS(1025), - [anon_sym_LT_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_GT_EQ] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym__] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [anon_sym_COMMA] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_DASH_GT] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_as] = ACTIONS(871), - [anon_sym_async] = ACTIONS(871), - [anon_sym_await] = ACTIONS(871), - [anon_sym_break] = ACTIONS(871), - [anon_sym_const] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_default] = ACTIONS(871), - [anon_sym_enum] = ACTIONS(871), - [anon_sym_fn] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_gen] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_impl] = ACTIONS(871), - [anon_sym_let] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(871), - [anon_sym_match] = ACTIONS(871), - [anon_sym_mod] = ACTIONS(871), - [anon_sym_pub] = ACTIONS(871), - [anon_sym_return] = ACTIONS(871), - [anon_sym_static] = ACTIONS(871), - [anon_sym_struct] = ACTIONS(871), - [anon_sym_trait] = ACTIONS(871), - [anon_sym_type] = ACTIONS(871), - [anon_sym_union] = ACTIONS(871), - [anon_sym_unsafe] = ACTIONS(871), - [anon_sym_use] = ACTIONS(871), - [anon_sym_where] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [sym_mutable_specifier] = ACTIONS(871), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(871), - [anon_sym_false] = ACTIONS(871), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(871), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym__raw_string_literal_start] = ACTIONS(876), - [sym_float_literal] = ACTIONS(876), - }, [STATE(186)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2589), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), [sym_line_comment] = STATE(186), [sym_block_comment] = STATE(186), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [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(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(881), + [anon_sym_u8] = ACTIONS(879), + [anon_sym_i8] = ACTIONS(879), + [anon_sym_u16] = ACTIONS(879), + [anon_sym_i16] = ACTIONS(879), + [anon_sym_u32] = ACTIONS(879), + [anon_sym_i32] = ACTIONS(879), + [anon_sym_u64] = ACTIONS(879), + [anon_sym_i64] = ACTIONS(879), + [anon_sym_u128] = ACTIONS(879), + [anon_sym_i128] = ACTIONS(879), + [anon_sym_isize] = ACTIONS(879), + [anon_sym_usize] = ACTIONS(879), + [anon_sym_f32] = ACTIONS(879), + [anon_sym_f64] = ACTIONS(879), + [anon_sym_bool] = ACTIONS(879), + [anon_sym_str] = ACTIONS(879), + [anon_sym_char] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PIPE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(881), + [anon_sym_PIPE_PIPE] = ACTIONS(881), + [anon_sym_LT_LT] = ACTIONS(879), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_PLUS_EQ] = ACTIONS(881), + [anon_sym_DASH_EQ] = ACTIONS(881), + [anon_sym_STAR_EQ] = ACTIONS(881), + [anon_sym_SLASH_EQ] = ACTIONS(881), + [anon_sym_PERCENT_EQ] = ACTIONS(881), + [anon_sym_CARET_EQ] = ACTIONS(881), + [anon_sym_AMP_EQ] = ACTIONS(881), + [anon_sym_PIPE_EQ] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(881), + [anon_sym_GT_GT_EQ] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(881), + [anon_sym__] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_COLON_COLON] = ACTIONS(881), + [anon_sym_DASH_GT] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(881), + [anon_sym_SQUOTE] = ACTIONS(879), + [anon_sym_as] = ACTIONS(879), + [anon_sym_async] = ACTIONS(879), + [anon_sym_await] = ACTIONS(879), + [anon_sym_break] = ACTIONS(879), + [anon_sym_const] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_default] = ACTIONS(879), + [anon_sym_enum] = ACTIONS(879), + [anon_sym_fn] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_gen] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_impl] = ACTIONS(879), + [anon_sym_let] = ACTIONS(879), + [anon_sym_loop] = ACTIONS(879), + [anon_sym_match] = ACTIONS(879), + [anon_sym_mod] = ACTIONS(879), + [anon_sym_pub] = ACTIONS(879), + [anon_sym_return] = ACTIONS(879), + [anon_sym_static] = ACTIONS(879), + [anon_sym_struct] = ACTIONS(879), + [anon_sym_trait] = ACTIONS(879), + [anon_sym_type] = ACTIONS(879), + [anon_sym_union] = ACTIONS(879), + [anon_sym_unsafe] = ACTIONS(879), + [anon_sym_use] = ACTIONS(879), + [anon_sym_where] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [sym_mutable_specifier] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(881), + [aux_sym_string_literal_token1] = ACTIONS(881), + [sym_char_literal] = ACTIONS(881), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(879), + [sym_super] = ACTIONS(879), + [sym_crate] = ACTIONS(879), + [sym_metavariable] = ACTIONS(881), + [sym__raw_string_literal_start] = ACTIONS(881), + [sym_float_literal] = ACTIONS(881), }, [STATE(187)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2608), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2604), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -38431,106 +38546,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(188)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2609), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1031), [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(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [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(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38539,230 +38654,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(189)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [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), + [aux_sym__non_special_token_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(887), + [anon_sym_i8] = ACTIONS(887), + [anon_sym_u16] = ACTIONS(887), + [anon_sym_i16] = ACTIONS(887), + [anon_sym_u32] = ACTIONS(887), + [anon_sym_i32] = ACTIONS(887), + [anon_sym_u64] = ACTIONS(887), + [anon_sym_i64] = ACTIONS(887), + [anon_sym_u128] = ACTIONS(887), + [anon_sym_i128] = ACTIONS(887), + [anon_sym_isize] = ACTIONS(887), + [anon_sym_usize] = ACTIONS(887), + [anon_sym_f32] = ACTIONS(887), + [anon_sym_f64] = ACTIONS(887), + [anon_sym_bool] = ACTIONS(887), + [anon_sym_str] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1029), + [anon_sym_PIPE_PIPE] = ACTIONS(1029), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [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(1032), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), + [anon_sym__] = ACTIONS(1032), + [anon_sym_DOT] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [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(887), + [anon_sym_as] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_await] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_fn] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_gen] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_impl] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_loop] = ACTIONS(887), + [anon_sym_match] = ACTIONS(887), + [anon_sym_mod] = ACTIONS(887), + [anon_sym_pub] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_struct] = ACTIONS(887), + [anon_sym_trait] = ACTIONS(887), + [anon_sym_type] = ACTIONS(887), + [anon_sym_union] = ACTIONS(887), + [anon_sym_unsafe] = ACTIONS(887), + [anon_sym_use] = ACTIONS(887), + [anon_sym_where] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [sym_mutable_specifier] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(887), + [anon_sym_false] = ACTIONS(887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_crate] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), }, [STATE(190)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2537), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2648), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -38779,106 +38894,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2607), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2695), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -38895,106 +39010,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2609), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2697), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -39011,106 +39126,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2635), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2716), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -39127,106 +39242,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2658), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2732), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -39243,106 +39358,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2659), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2733), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -39359,106 +39474,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(3052), - [sym__let_chain] = STATE(3053), - [sym__condition] = STATE(2673), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2941), + [sym__let_chain] = STATE(2966), + [sym__condition] = STATE(2743), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -39475,220 +39590,565 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(197)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [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(879), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(881), + [anon_sym_u8] = ACTIONS(879), + [anon_sym_i8] = ACTIONS(879), + [anon_sym_u16] = ACTIONS(879), + [anon_sym_i16] = ACTIONS(879), + [anon_sym_u32] = ACTIONS(879), + [anon_sym_i32] = ACTIONS(879), + [anon_sym_u64] = ACTIONS(879), + [anon_sym_i64] = ACTIONS(879), + [anon_sym_u128] = ACTIONS(879), + [anon_sym_i128] = ACTIONS(879), + [anon_sym_isize] = ACTIONS(879), + [anon_sym_usize] = ACTIONS(879), + [anon_sym_f32] = ACTIONS(879), + [anon_sym_f64] = ACTIONS(879), + [anon_sym_bool] = ACTIONS(879), + [anon_sym_str] = ACTIONS(879), + [anon_sym_char] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PIPE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(881), + [anon_sym_PIPE_PIPE] = ACTIONS(881), + [anon_sym_LT_LT] = ACTIONS(879), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_PLUS_EQ] = ACTIONS(881), + [anon_sym_DASH_EQ] = ACTIONS(881), + [anon_sym_STAR_EQ] = ACTIONS(881), + [anon_sym_SLASH_EQ] = ACTIONS(881), + [anon_sym_PERCENT_EQ] = ACTIONS(881), + [anon_sym_CARET_EQ] = ACTIONS(881), + [anon_sym_AMP_EQ] = ACTIONS(881), + [anon_sym_PIPE_EQ] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(881), + [anon_sym_GT_GT_EQ] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(881), + [anon_sym__] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_COLON_COLON] = ACTIONS(881), + [anon_sym_DASH_GT] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(881), + [anon_sym_SQUOTE] = ACTIONS(879), + [anon_sym_as] = ACTIONS(879), + [anon_sym_async] = ACTIONS(879), + [anon_sym_await] = ACTIONS(879), + [anon_sym_break] = ACTIONS(879), + [anon_sym_const] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_default] = ACTIONS(879), + [anon_sym_enum] = ACTIONS(879), + [anon_sym_fn] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_gen] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_impl] = ACTIONS(879), + [anon_sym_let] = ACTIONS(879), + [anon_sym_loop] = ACTIONS(879), + [anon_sym_match] = ACTIONS(879), + [anon_sym_mod] = ACTIONS(879), + [anon_sym_pub] = ACTIONS(879), + [anon_sym_return] = ACTIONS(879), + [anon_sym_static] = ACTIONS(879), + [anon_sym_struct] = ACTIONS(879), + [anon_sym_trait] = ACTIONS(879), + [anon_sym_type] = ACTIONS(879), + [anon_sym_union] = ACTIONS(879), + [anon_sym_unsafe] = ACTIONS(879), + [anon_sym_use] = ACTIONS(879), + [anon_sym_where] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [sym_mutable_specifier] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(881), + [aux_sym_string_literal_token1] = ACTIONS(881), + [sym_char_literal] = ACTIONS(881), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(879), + [sym_super] = ACTIONS(879), + [sym_crate] = ACTIONS(879), + [sym_metavariable] = ACTIONS(881), + [sym__raw_string_literal_start] = ACTIONS(881), + [sym_float_literal] = ACTIONS(881), }, [STATE(198)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1906), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), - [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), + [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(1005), + [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__raw_string_literal_start] = ACTIONS(1005), + [sym_float_literal] = ACTIONS(1005), + }, + [STATE(199)] = { + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1011), + [anon_sym_COLON] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1011), + [anon_sym_u8] = ACTIONS(1009), + [anon_sym_i8] = ACTIONS(1009), + [anon_sym_u16] = ACTIONS(1009), + [anon_sym_i16] = ACTIONS(1009), + [anon_sym_u32] = ACTIONS(1009), + [anon_sym_i32] = ACTIONS(1009), + [anon_sym_u64] = ACTIONS(1009), + [anon_sym_i64] = ACTIONS(1009), + [anon_sym_u128] = ACTIONS(1009), + [anon_sym_i128] = ACTIONS(1009), + [anon_sym_isize] = ACTIONS(1009), + [anon_sym_usize] = ACTIONS(1009), + [anon_sym_f32] = ACTIONS(1009), + [anon_sym_f64] = ACTIONS(1009), + [anon_sym_bool] = ACTIONS(1009), + [anon_sym_str] = ACTIONS(1009), + [anon_sym_char] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1009), + [anon_sym_CARET] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_PLUS_EQ] = ACTIONS(1011), + [anon_sym_DASH_EQ] = ACTIONS(1011), + [anon_sym_STAR_EQ] = ACTIONS(1011), + [anon_sym_SLASH_EQ] = ACTIONS(1011), + [anon_sym_PERCENT_EQ] = ACTIONS(1011), + [anon_sym_CARET_EQ] = ACTIONS(1011), + [anon_sym_AMP_EQ] = ACTIONS(1011), + [anon_sym_PIPE_EQ] = ACTIONS(1011), + [anon_sym_LT_LT_EQ] = ACTIONS(1011), + [anon_sym_GT_GT_EQ] = ACTIONS(1011), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1011), + [anon_sym_BANG_EQ] = ACTIONS(1011), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT_EQ] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(1011), + [anon_sym__] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_COLON_COLON] = ACTIONS(1011), + [anon_sym_DASH_GT] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_fn] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_gen] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_impl] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_loop] = ACTIONS(1009), + [anon_sym_match] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1009), + [anon_sym_pub] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_trait] = ACTIONS(1009), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_unsafe] = ACTIONS(1009), + [anon_sym_use] = ACTIONS(1009), + [anon_sym_where] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [sym_mutable_specifier] = ACTIONS(1009), + [sym_integer_literal] = ACTIONS(1011), + [aux_sym_string_literal_token1] = ACTIONS(1011), + [sym_char_literal] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_crate] = ACTIONS(1009), + [sym__raw_string_literal_start] = ACTIONS(1011), + [sym_float_literal] = ACTIONS(1011), + }, + [STATE(200)] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [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(1019), + [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__raw_string_literal_start] = ACTIONS(1019), + [sym_float_literal] = ACTIONS(1019), + }, + [STATE(201)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), + [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), @@ -39705,403 +40165,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(199)] = { - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_gen] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), - }, - [STATE(200)] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_gen] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_pub] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_static] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_trait] = ACTIONS(919), - [anon_sym_type] = ACTIONS(919), - [anon_sym_union] = ACTIONS(919), - [anon_sym_unsafe] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [sym_mutable_specifier] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(921), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_crate] = ACTIONS(919), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - }, - [STATE(201)] = { - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_COLON] = ACTIONS(929), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_QMARK] = ACTIONS(931), - [anon_sym_u8] = ACTIONS(929), - [anon_sym_i8] = ACTIONS(929), - [anon_sym_u16] = ACTIONS(929), - [anon_sym_i16] = ACTIONS(929), - [anon_sym_u32] = ACTIONS(929), - [anon_sym_i32] = ACTIONS(929), - [anon_sym_u64] = ACTIONS(929), - [anon_sym_i64] = ACTIONS(929), - [anon_sym_u128] = ACTIONS(929), - [anon_sym_i128] = ACTIONS(929), - [anon_sym_isize] = ACTIONS(929), - [anon_sym_usize] = ACTIONS(929), - [anon_sym_f32] = ACTIONS(929), - [anon_sym_f64] = ACTIONS(929), - [anon_sym_bool] = ACTIONS(929), - [anon_sym_str] = ACTIONS(929), - [anon_sym_char] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(929), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_AMP] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym__] = ACTIONS(929), - [anon_sym_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(931), - [anon_sym_SQUOTE] = ACTIONS(929), - [anon_sym_as] = ACTIONS(929), - [anon_sym_async] = ACTIONS(929), - [anon_sym_await] = ACTIONS(929), - [anon_sym_break] = ACTIONS(929), - [anon_sym_const] = ACTIONS(929), - [anon_sym_continue] = ACTIONS(929), - [anon_sym_default] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(929), - [anon_sym_fn] = ACTIONS(929), - [anon_sym_for] = ACTIONS(929), - [anon_sym_gen] = ACTIONS(929), - [anon_sym_if] = ACTIONS(929), - [anon_sym_impl] = ACTIONS(929), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(929), - [anon_sym_match] = ACTIONS(929), - [anon_sym_mod] = ACTIONS(929), - [anon_sym_pub] = ACTIONS(929), - [anon_sym_return] = ACTIONS(929), - [anon_sym_static] = ACTIONS(929), - [anon_sym_struct] = ACTIONS(929), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(929), - [anon_sym_union] = ACTIONS(929), - [anon_sym_unsafe] = ACTIONS(929), - [anon_sym_use] = ACTIONS(929), - [anon_sym_where] = ACTIONS(929), - [anon_sym_while] = ACTIONS(929), - [sym_mutable_specifier] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(931), - [aux_sym_string_literal_token1] = ACTIONS(931), - [sym_char_literal] = ACTIONS(931), - [anon_sym_true] = ACTIONS(929), - [anon_sym_false] = ACTIONS(929), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(929), - [sym_super] = ACTIONS(929), - [sym_crate] = ACTIONS(929), - [sym__raw_string_literal_start] = ACTIONS(931), - [sym_float_literal] = ACTIONS(931), - }, [STATE(202)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40166,287 +40281,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(203)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [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(204)] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym__] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [sym_mutable_specifier] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, - [STATE(205)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40510,58 +40395,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(206)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), + [STATE(204)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40625,432 +40510,547 @@ 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(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_u8] = ACTIONS(945), + [anon_sym_i8] = ACTIONS(945), + [anon_sym_u16] = ACTIONS(945), + [anon_sym_i16] = ACTIONS(945), + [anon_sym_u32] = ACTIONS(945), + [anon_sym_i32] = ACTIONS(945), + [anon_sym_u64] = ACTIONS(945), + [anon_sym_i64] = ACTIONS(945), + [anon_sym_u128] = ACTIONS(945), + [anon_sym_i128] = ACTIONS(945), + [anon_sym_isize] = ACTIONS(945), + [anon_sym_usize] = ACTIONS(945), + [anon_sym_f32] = ACTIONS(945), + [anon_sym_f64] = ACTIONS(945), + [anon_sym_bool] = ACTIONS(945), + [anon_sym_str] = ACTIONS(945), + [anon_sym_char] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PERCENT_EQ] = ACTIONS(947), + [anon_sym_CARET_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(947), + [anon_sym__] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_COLON_COLON] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_async] = ACTIONS(945), + [anon_sym_await] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_fn] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_gen] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_impl] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_mod] = ACTIONS(945), + [anon_sym_pub] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_static] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_unsafe] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_where] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [sym_mutable_specifier] = ACTIONS(945), + [sym_integer_literal] = ACTIONS(947), + [aux_sym_string_literal_token1] = ACTIONS(947), + [sym_char_literal] = ACTIONS(947), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(945), + [sym_super] = ACTIONS(945), + [sym_crate] = ACTIONS(945), + [sym__raw_string_literal_start] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), + }, + [STATE(206)] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [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(1013), + [sym_super] = ACTIONS(1013), + [sym_crate] = ACTIONS(1013), + [sym__raw_string_literal_start] = ACTIONS(1015), + [sym_float_literal] = ACTIONS(1015), + }, [STATE(207)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), - [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(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(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(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), }, [STATE(208)] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [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(907), - [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__raw_string_literal_start] = ACTIONS(907), - [sym_float_literal] = ACTIONS(907), - }, - [STATE(209)] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_EQ_GT] = ACTIONS(927), - [anon_sym_COLON] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(927), - [anon_sym_u8] = ACTIONS(925), - [anon_sym_i8] = ACTIONS(925), - [anon_sym_u16] = ACTIONS(925), - [anon_sym_i16] = ACTIONS(925), - [anon_sym_u32] = ACTIONS(925), - [anon_sym_i32] = ACTIONS(925), - [anon_sym_u64] = ACTIONS(925), - [anon_sym_i64] = ACTIONS(925), - [anon_sym_u128] = ACTIONS(925), - [anon_sym_i128] = ACTIONS(925), - [anon_sym_isize] = ACTIONS(925), - [anon_sym_usize] = ACTIONS(925), - [anon_sym_f32] = ACTIONS(925), - [anon_sym_f64] = ACTIONS(925), - [anon_sym_bool] = ACTIONS(925), - [anon_sym_str] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(925), - [anon_sym_PERCENT] = ACTIONS(925), - [anon_sym_CARET] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(925), - [anon_sym_GT_GT] = ACTIONS(925), - [anon_sym_PLUS_EQ] = ACTIONS(927), - [anon_sym_DASH_EQ] = ACTIONS(927), - [anon_sym_STAR_EQ] = ACTIONS(927), - [anon_sym_SLASH_EQ] = ACTIONS(927), - [anon_sym_PERCENT_EQ] = ACTIONS(927), - [anon_sym_CARET_EQ] = ACTIONS(927), - [anon_sym_AMP_EQ] = ACTIONS(927), - [anon_sym_PIPE_EQ] = ACTIONS(927), - [anon_sym_LT_LT_EQ] = ACTIONS(927), - [anon_sym_GT_GT_EQ] = ACTIONS(927), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_AT] = ACTIONS(927), - [anon_sym__] = ACTIONS(925), - [anon_sym_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(927), - [anon_sym_DASH_GT] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(927), - [anon_sym_SQUOTE] = ACTIONS(925), - [anon_sym_as] = ACTIONS(925), - [anon_sym_async] = ACTIONS(925), - [anon_sym_await] = ACTIONS(925), - [anon_sym_break] = ACTIONS(925), - [anon_sym_const] = ACTIONS(925), - [anon_sym_continue] = ACTIONS(925), - [anon_sym_default] = ACTIONS(925), - [anon_sym_enum] = ACTIONS(925), - [anon_sym_fn] = ACTIONS(925), - [anon_sym_for] = ACTIONS(925), - [anon_sym_gen] = ACTIONS(925), - [anon_sym_if] = ACTIONS(925), - [anon_sym_impl] = ACTIONS(925), - [anon_sym_let] = ACTIONS(925), - [anon_sym_loop] = ACTIONS(925), - [anon_sym_match] = ACTIONS(925), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_pub] = ACTIONS(925), - [anon_sym_return] = ACTIONS(925), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(925), - [anon_sym_trait] = ACTIONS(925), - [anon_sym_type] = ACTIONS(925), - [anon_sym_union] = ACTIONS(925), - [anon_sym_unsafe] = ACTIONS(925), - [anon_sym_use] = ACTIONS(925), - [anon_sym_where] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [sym_mutable_specifier] = ACTIONS(925), - [sym_integer_literal] = ACTIONS(927), - [aux_sym_string_literal_token1] = ACTIONS(927), - [sym_char_literal] = ACTIONS(927), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(925), - [sym_super] = ACTIONS(925), - [sym_crate] = ACTIONS(925), - [sym__raw_string_literal_start] = ACTIONS(927), - [sym_float_literal] = ACTIONS(927), - }, - [STATE(210)] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_EQ_GT] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [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_AT] = ACTIONS(1047), - [anon_sym__] = ACTIONS(1045), - [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_COMMA] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_DASH_GT] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_await] = 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), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [sym_mutable_specifier] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, + [STATE(209)] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [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_AT] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1045), + [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_COMMA] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_DASH_GT] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_await] = 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), @@ -41085,9 +41085,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1047), [sym_float_literal] = ACTIONS(1047), }, - [STATE(211)] = { - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), [sym_identifier] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1051), [anon_sym_LPAREN] = ACTIONS(1051), @@ -41200,288 +41200,58 @@ 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(212)] = { - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [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(213)] = { - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [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(1013), - [sym_super] = ACTIONS(1013), - [sym_crate] = ACTIONS(1013), - [sym__raw_string_literal_start] = ACTIONS(1015), - [sym_float_literal] = ACTIONS(1015), - }, - [STATE(214)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), + [STATE(211)] = { + [sym_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41545,56 +41315,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(215)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1414), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), + [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_attribute_item] = STATE(1031), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41622,8 +41509,9 @@ 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(1053), + [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), @@ -41640,8 +41528,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1055), - [anon_sym_raw] = ACTIONS(1057), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -41659,60 +41545,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(214)] = { + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_gen] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), + }, + [STATE(215)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1462), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1057), + [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(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(216)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1462), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [aux_sym_tuple_expression_repeat1] = STATE(246), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41733,13 +41846,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41774,57 +41889,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(217)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1495), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), + [aux_sym_tuple_expression_repeat1] = STATE(245), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41845,15 +41962,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(1061), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41888,53 +42003,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(218)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1535), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1495), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1536), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1462), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), [sym_identifier] = ACTIONS(339), @@ -41964,10 +42079,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(1061), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1063), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42002,57 +42117,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(219)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1415), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), + [aux_sym_tuple_expression_repeat1] = STATE(240), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1063), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42073,15 +42190,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(1065), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42116,53 +42231,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(220)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1436), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1561), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(220), [sym_block_comment] = STATE(220), [sym_identifier] = ACTIONS(339), @@ -42192,10 +42307,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(1069), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1065), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1071), + [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42230,288 +42345,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(221)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1850), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1436), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(221), [sym_block_comment] = STATE(221), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_AMP] = ACTIONS(963), + [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__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [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), + [sym_mutable_specifier] = ACTIONS(1069), + [anon_sym_raw] = ACTIONS(1071), + [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(222)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1763), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_AMP] = ACTIONS(963), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1081), + [anon_sym__] = ACTIONS(1065), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1067), [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(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(223)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1792), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), [sym_line_comment] = STATE(223), [sym_block_comment] = STATE(223), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(979), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -42529,15 +42644,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(961), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1079), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1085), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -42554,6 +42667,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(1081), + [anon_sym_raw] = ACTIONS(1083), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -42572,53 +42687,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(224)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1518), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1415), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(224), [sym_block_comment] = STATE(224), [sym_identifier] = ACTIONS(339), @@ -42649,7 +42764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), @@ -42686,104 +42801,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(225)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1414), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1436), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1089), - [anon_sym_raw] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [sym_mutable_specifier] = ACTIONS(1085), + [anon_sym_raw] = ACTIONS(1087), + [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), @@ -42800,104 +42915,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(226)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(2642), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2787), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -42914,59 +43029,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(227)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [aux_sym_tuple_expression_repeat1] = STATE(240), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43028,104 +43143,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(228)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_let_condition] = STATE(2642), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1522), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1091), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(945), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -43142,59 +43257,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(229)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1821), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), - [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1095), + [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(230)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1735), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1099), + [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(231)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_let_condition] = STATE(2787), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [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(985), + [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(232)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1739), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1103), + [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(233)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1522), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1095), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43215,13 +43784,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(1089), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1091), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43255,60 +43826,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(230)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [aux_sym_tuple_expression_repeat1] = STATE(232), + [STATE(234)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [aux_sym_tuple_expression_repeat1] = STATE(240), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1095), + [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43369,58 +43940,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(231)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1529), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1436), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), + [STATE(235)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_tuple_expression_repeat1] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43441,15 +44014,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(1069), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1071), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43483,447 +44054,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(232)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [aux_sym_tuple_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(339), + [STATE(236)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_let_condition] = STATE(2787), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1097), [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(233)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1099), - [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(234)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_tuple_expression_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(235)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1414), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(907), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -43939,61 +44168,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(236)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), + [STATE(237)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1914), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_let_condition] = STATE(2787), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(979), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -44011,12 +44241,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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(983), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -44027,6 +44257,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(985), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -44034,8 +44265,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(1111), - [anon_sym_raw] = ACTIONS(1113), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -44053,219 +44282,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1436), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(495), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1069), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, [STATE(238)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1495), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -44282,104 +44397,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(239)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1612), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1415), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1522), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_AMP] = ACTIONS(941), + [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(1065), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1091), [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -44388,327 +44503,211 @@ 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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(240)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_let_condition] = STATE(2642), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(967), - [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), + [aux_sym_tuple_expression_repeat1] = STATE(240), + [sym_identifier] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_RPAREN] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_u8] = ACTIONS(1124), + [anon_sym_i8] = ACTIONS(1124), + [anon_sym_u16] = ACTIONS(1124), + [anon_sym_i16] = ACTIONS(1124), + [anon_sym_u32] = ACTIONS(1124), + [anon_sym_i32] = ACTIONS(1124), + [anon_sym_u64] = ACTIONS(1124), + [anon_sym_i64] = ACTIONS(1124), + [anon_sym_u128] = ACTIONS(1124), + [anon_sym_i128] = ACTIONS(1124), + [anon_sym_isize] = ACTIONS(1124), + [anon_sym_usize] = ACTIONS(1124), + [anon_sym_f32] = ACTIONS(1124), + [anon_sym_f64] = ACTIONS(1124), + [anon_sym_bool] = ACTIONS(1124), + [anon_sym_str] = ACTIONS(1124), + [anon_sym_char] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_DOT_DOT] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1142), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_gen] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_loop] = ACTIONS(1169), + [anon_sym_match] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_unsafe] = ACTIONS(1181), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_yield] = ACTIONS(1187), + [anon_sym_move] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1196), + [aux_sym_string_literal_token1] = ACTIONS(1199), + [sym_char_literal] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1205), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1211), + [sym__raw_string_literal_start] = ACTIONS(1214), + [sym_float_literal] = ACTIONS(1196), }, [STATE(241)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_let_condition] = STATE(2642), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1436), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(965), - [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(967), - [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(242)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1436), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1069), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -44720,6 +44719,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1217), + [anon_sym_raw] = ACTIONS(1219), [anon_sym_yield] = ACTIONS(485), [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), @@ -44737,60 +44738,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(243)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [aux_sym_tuple_expression_repeat1] = STATE(233), + [STATE(242)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [aux_sym_tuple_expression_repeat1] = STATE(234), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1221), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44851,105 +44852,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(244)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1495), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(465), + [STATE(243)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [aux_sym_tuple_expression_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1223), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(495), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1063), + [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(497), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), + [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(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -44958,112 +44959,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(245)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), + [STATE(244)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1415), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1522), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(495), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1091), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45079,172 +45080,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(246)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), - [aux_sym_tuple_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1120), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1140), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_COLON_COLON] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_gen] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_loop] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1167), - [anon_sym_unsafe] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1197), - [anon_sym_move] = ACTIONS(1200), - [anon_sym_try] = ACTIONS(1203), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1209), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1212), - [anon_sym_false] = ACTIONS(1212), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1215), - [sym_super] = ACTIONS(1218), - [sym_crate] = ACTIONS(1218), - [sym_metavariable] = ACTIONS(1221), - [sym__raw_string_literal_start] = ACTIONS(1224), - [sym_float_literal] = ACTIONS(1206), - }, - [STATE(247)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1908), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), + [STATE(245)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [aux_sym_tuple_expression_repeat1] = STATE(240), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1225), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45305,58 +45194,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(248)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), + [STATE(246)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1462), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(247)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1538), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45382,7 +45385,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -45417,60 +45420,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(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(478), - [sym_match_expression] = STATE(478), - [sym_while_expression] = STATE(478), - [sym_loop_expression] = STATE(478), - [sym_for_expression] = STATE(478), - [sym_const_block] = STATE(478), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3661), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(478), - [sym_async_block] = STATE(478), - [sym_gen_block] = STATE(478), - [sym_try_block] = STATE(478), - [sym_block] = STATE(478), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), + [STATE(248)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45497,24 +45500,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(1229), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), + [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(1243), - [anon_sym_while] = ACTIONS(1245), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45529,103 +45532,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(250)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(465), + [STATE(249)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [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(1105), - [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(497), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), + [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(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -45634,175 +45637,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(250)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2978), + [sym_variadic_parameter] = STATE(2978), + [sym_parameter] = STATE(2978), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2579), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2516), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1293), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, [STATE(251)] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2799), - [sym_variadic_parameter] = STATE(2799), - [sym_parameter] = STATE(2799), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45865,168 +45868,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(253)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(965), - [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(254)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), + [STATE(252)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46089,56 +45980,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(255)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), + [STATE(253)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46201,328 +46092,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(256)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(257)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(258)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1597), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(465), + [STATE(254)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(470), + [sym_match_expression] = STATE(470), + [sym_while_expression] = STATE(470), + [sym_loop_expression] = STATE(470), + [sym_for_expression] = STATE(470), + [sym_const_block] = STATE(470), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(470), + [sym_async_block] = STATE(470), + [sym_gen_block] = STATE(470), + [sym_try_block] = STATE(470), + [sym_block] = STATE(470), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(1301), + [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(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_gen] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1321), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -46530,110 +46197,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(259)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1399), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(465), + [STATE(255)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [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(1087), - [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -46642,175 +46309,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(260)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(261)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1399), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), + [STATE(256)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46838,7 +46393,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(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -46873,103 +46428,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(262)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(465), + [STATE(257)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [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(1105), - [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(497), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), + [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(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -46978,110 +46533,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(263)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1568), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(465), + [STATE(258)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [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(943), - [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -47090,623 +46645,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(264)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(265)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(266)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(267)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2809), - [sym_variadic_parameter] = STATE(2809), - [sym_parameter] = STATE(2809), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2688), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(268)] = { - [sym_else_clause] = STATE(397), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_macro_rules_BANG] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_u8] = ACTIONS(1331), - [anon_sym_i8] = ACTIONS(1331), - [anon_sym_u16] = ACTIONS(1331), - [anon_sym_i16] = ACTIONS(1331), - [anon_sym_u32] = ACTIONS(1331), - [anon_sym_i32] = ACTIONS(1331), - [anon_sym_u64] = ACTIONS(1331), - [anon_sym_i64] = ACTIONS(1331), - [anon_sym_u128] = ACTIONS(1331), - [anon_sym_i128] = ACTIONS(1331), - [anon_sym_isize] = ACTIONS(1331), - [anon_sym_usize] = ACTIONS(1331), - [anon_sym_f32] = ACTIONS(1331), - [anon_sym_f64] = ACTIONS(1331), - [anon_sym_bool] = ACTIONS(1331), - [anon_sym_str] = ACTIONS(1331), - [anon_sym_char] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_AMP_AMP] = ACTIONS(1329), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_LT_LT] = ACTIONS(1331), - [anon_sym_GT_GT] = ACTIONS(1331), - [anon_sym_PLUS_EQ] = ACTIONS(1329), - [anon_sym_DASH_EQ] = ACTIONS(1329), - [anon_sym_STAR_EQ] = ACTIONS(1329), - [anon_sym_SLASH_EQ] = ACTIONS(1329), - [anon_sym_PERCENT_EQ] = ACTIONS(1329), - [anon_sym_CARET_EQ] = ACTIONS(1329), - [anon_sym_AMP_EQ] = ACTIONS(1329), - [anon_sym_PIPE_EQ] = ACTIONS(1329), - [anon_sym_LT_LT_EQ] = ACTIONS(1329), - [anon_sym_GT_GT_EQ] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_EQ_EQ] = ACTIONS(1329), - [anon_sym_BANG_EQ] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT_EQ] = ACTIONS(1329), - [anon_sym_LT_EQ] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_as] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_fn] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_gen] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_impl] = ACTIONS(1331), - [anon_sym_let] = ACTIONS(1331), - [anon_sym_loop] = ACTIONS(1331), - [anon_sym_match] = ACTIONS(1331), - [anon_sym_mod] = ACTIONS(1331), - [anon_sym_pub] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_trait] = ACTIONS(1331), - [anon_sym_type] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_unsafe] = ACTIONS(1331), - [anon_sym_use] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_else] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1331), - [anon_sym_move] = ACTIONS(1331), - [anon_sym_try] = ACTIONS(1331), - [sym_integer_literal] = ACTIONS(1329), - [aux_sym_string_literal_token1] = ACTIONS(1329), - [sym_char_literal] = ACTIONS(1329), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1331), - [sym_super] = ACTIONS(1331), - [sym_crate] = ACTIONS(1331), - [sym_metavariable] = ACTIONS(1329), - [sym__raw_string_literal_start] = ACTIONS(1329), - [sym_float_literal] = ACTIONS(1329), - }, - [STATE(269)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), + [STATE(259)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47734,7 +46729,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47769,56 +46764,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(270)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [STATE(260)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), + [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(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(261)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1487), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47846,7 +46953,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47881,56 +46988,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(271)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [STATE(262)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1558), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47958,7 +47065,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47993,60 +47100,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(272)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [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(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3661), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [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(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), + [STATE(263)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1540), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48070,27 +47177,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), + [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(1243), - [anon_sym_while] = ACTIONS(1245), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48105,56 +47212,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), + [STATE(264)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48182,7 +47289,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48217,280 +47324,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(274)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), + [STATE(265)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1548), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48518,7 +47401,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48553,56 +47436,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(277)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), + [STATE(266)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48665,168 +47548,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(278)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(279)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1791), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), + [STATE(267)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48889,103 +47660,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(280)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(465), + [STATE(268)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1718), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [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(1105), - [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(497), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), + [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(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -48994,111 +47765,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(281)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(465), + [STATE(269)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1721), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(480), + [sym_match_expression] = STATE(480), + [sym_while_expression] = STATE(480), + [sym_loop_expression] = STATE(480), + [sym_for_expression] = STATE(480), + [sym_const_block] = STATE(480), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(480), + [sym_async_block] = STATE(480), + [sym_gen_block] = STATE(480), + [sym_try_block] = STATE(480), + [sym_block] = STATE(480), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1301), + [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(1335), - [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(497), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1305), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_gen] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1321), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49106,63 +47877,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(282)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [STATE(270)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49225,56 +47996,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1537), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [STATE(271)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49302,7 +48073,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(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49337,168 +48108,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(284)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1459), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), + [STATE(272)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1552), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49526,7 +48185,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(1053), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49561,168 +48220,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(286)] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2799), - [sym_variadic_parameter] = STATE(2799), - [sym_parameter] = STATE(2799), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2472), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1512), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [STATE(273)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1554), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49750,7 +48297,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(1053), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49785,56 +48332,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(288)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [STATE(274)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1550), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49862,7 +48409,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49897,60 +48444,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(289)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(478), - [sym_match_expression] = STATE(478), - [sym_while_expression] = STATE(478), - [sym_loop_expression] = STATE(478), - [sym_for_expression] = STATE(478), - [sym_const_block] = STATE(478), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3661), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(478), - [sym_async_block] = STATE(478), - [sym_gen_block] = STATE(478), - [sym_try_block] = STATE(478), - [sym_block] = STATE(478), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [STATE(275)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1557), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [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(1227), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49974,27 +48521,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), + [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(1243), - [anon_sym_while] = ACTIONS(1245), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50009,56 +48556,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(290)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [STATE(276)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50121,327 +48668,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(291)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(292)] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2799), - [sym_variadic_parameter] = STATE(2799), - [sym_parameter] = STATE(2799), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2472), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(465), + [STATE(277)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [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(943), - [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -50450,67 +48773,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(294)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [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(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3661), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [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(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), + [STATE(278)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(470), + [sym_match_expression] = STATE(470), + [sym_while_expression] = STATE(470), + [sym_loop_expression] = STATE(470), + [sym_for_expression] = STATE(470), + [sym_const_block] = STATE(470), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(470), + [sym_async_block] = STATE(470), + [sym_gen_block] = STATE(470), + [sym_try_block] = STATE(470), + [sym_block] = STATE(470), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50537,24 +48860,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(1229), + [anon_sym_async] = ACTIONS(1303), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1305), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_gen] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1315), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), + [anon_sym_unsafe] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1321), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50569,56 +48892,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), + [STATE(279)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50681,280 +49004,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(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1399), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1516), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [STATE(280)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1422), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50982,7 +49081,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(1053), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51017,215 +49116,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(299)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2953), - [sym_variadic_parameter] = STATE(2953), - [sym_parameter] = STATE(2953), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2631), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1371), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(465), + [STATE(281)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [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(1105), - [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(497), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), + [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(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -51234,67 +49221,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(301)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), + [STATE(282)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(480), + [sym_match_expression] = STATE(480), + [sym_while_expression] = STATE(480), + [sym_loop_expression] = STATE(480), + [sym_for_expression] = STATE(480), + [sym_const_block] = STATE(480), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(480), + [sym_async_block] = STATE(480), + [sym_gen_block] = STATE(480), + [sym_try_block] = STATE(480), + [sym_block] = STATE(480), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51321,24 +49308,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(1303), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1305), [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(1307), + [anon_sym_gen] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1315), [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(1317), + [anon_sym_while] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1321), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51353,56 +49340,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(302)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51465,56 +49452,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(303)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [STATE(284)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1430), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51542,7 +49529,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51577,61 +49564,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(304)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), + [STATE(285)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(979), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -51649,12 +49636,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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1079), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -51689,103 +49676,103 @@ 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(305)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(339), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(467), [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(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [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(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51794,110 +49781,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(465), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -51913,215 +49900,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(307)] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2799), - [sym_variadic_parameter] = STATE(2799), - [sym_parameter] = STATE(2799), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2472), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(465), + [STATE(288)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1487), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -52137,215 +50012,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(310)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(465), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -52361,103 +50124,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(311)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(465), + [STATE(290)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -52473,215 +50236,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(312)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [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(313)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1525), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(339), + [STATE(291)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1652), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(467), [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(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52690,97 +50341,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1620), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(465), + [STATE(292)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -52809,103 +50460,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(315)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1459), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(465), + [STATE(293)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -52921,103 +50572,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(316)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1622), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(465), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -53033,103 +50684,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(317)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(465), + [STATE(295)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1630), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -53145,103 +50796,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(318)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(465), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -53257,103 +50908,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(319)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_identifier] = ACTIONS(465), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -53369,103 +51020,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(320)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(465), + [STATE(298)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [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(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -53474,110 +51125,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(465), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1430), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -53593,90 +51244,314 @@ 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(322)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(465), + [STATE(300)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [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_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(983), + [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(301)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2978), + [sym_variadic_parameter] = STATE(2978), + [sym_parameter] = STATE(2978), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2579), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(302)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -53705,90 +51580,90 @@ 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(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(465), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -53817,90 +51692,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(465), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -53929,103 +51804,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(325)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1527), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(339), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1487), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(467), [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(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54034,110 +51909,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1520), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(339), + [STATE(306)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(467), [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(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54146,97 +52021,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(465), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -54265,103 +52140,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(328)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54377,103 +52252,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(329)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(465), + [STATE(309)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -54489,103 +52364,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(330)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(310)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54594,110 +52469,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1531), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(339), + [STATE(311)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_identifier] = ACTIONS(467), [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(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54706,222 +52581,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), - [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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), + [STATE(312)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(965), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [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(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1536), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(339), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(467), [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(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54930,97 +52805,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(465), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -55049,103 +52924,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(335)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(339), + [STATE(315)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(467), [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(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [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(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55154,110 +53029,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(339), + [STATE(316)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(467), [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(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [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(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(317)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1430), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55266,63 +53253,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), + [STATE(318)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55350,7 +53337,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(1061), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -55385,61 +53372,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(338)] = { - [sym_bracketed_type] = STATE(3581), - [sym_generic_function] = STATE(1764), - [sym_generic_type_with_turbofish] = STATE(2979), - [sym__expression_except_range] = STATE(1644), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1777), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3175), - [sym_range_expression] = STATE(1773), - [sym_unary_expression] = STATE(1764), - [sym_try_expression] = STATE(1764), - [sym_reference_expression] = STATE(1764), - [sym_binary_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_compound_assignment_expr] = STATE(1764), - [sym_type_cast_expression] = STATE(1764), - [sym_return_expression] = STATE(1764), - [sym_yield_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_array_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_tuple_expression] = STATE(1764), - [sym_unit_expression] = STATE(1764), - [sym_struct_expression] = STATE(1764), - [sym_if_expression] = STATE(1764), - [sym_match_expression] = STATE(1764), - [sym_while_expression] = STATE(1764), - [sym_loop_expression] = STATE(1764), - [sym_for_expression] = STATE(1764), - [sym_const_block] = STATE(1764), - [sym_closure_expression] = STATE(1764), - [sym_closure_parameters] = STATE(221), - [sym_label] = STATE(3667), - [sym_break_expression] = STATE(1764), - [sym_continue_expression] = STATE(1764), - [sym_index_expression] = STATE(1764), - [sym_await_expression] = STATE(1764), - [sym_field_expression] = STATE(1645), - [sym_unsafe_block] = STATE(1764), - [sym_async_block] = STATE(1764), - [sym_gen_block] = STATE(1764), - [sym_try_block] = STATE(1764), - [sym_block] = STATE(1764), - [sym__literal] = STATE(1764), - [sym_string_literal] = STATE(1747), - [sym_raw_string_literal] = STATE(1747), - [sym_boolean_literal] = STATE(1747), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), + [STATE(319)] = { + [sym_else_clause] = STATE(390), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(1351), + [sym_identifier] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_macro_rules_BANG] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1351), + [anon_sym_u8] = ACTIONS(1353), + [anon_sym_i8] = ACTIONS(1353), + [anon_sym_u16] = ACTIONS(1353), + [anon_sym_i16] = ACTIONS(1353), + [anon_sym_u32] = ACTIONS(1353), + [anon_sym_i32] = ACTIONS(1353), + [anon_sym_u64] = ACTIONS(1353), + [anon_sym_i64] = ACTIONS(1353), + [anon_sym_u128] = ACTIONS(1353), + [anon_sym_i128] = ACTIONS(1353), + [anon_sym_isize] = ACTIONS(1353), + [anon_sym_usize] = ACTIONS(1353), + [anon_sym_f32] = ACTIONS(1353), + [anon_sym_f64] = ACTIONS(1353), + [anon_sym_bool] = ACTIONS(1353), + [anon_sym_str] = ACTIONS(1353), + [anon_sym_char] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_PERCENT] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1351), + [anon_sym_LT_LT] = ACTIONS(1353), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_PLUS_EQ] = ACTIONS(1351), + [anon_sym_DASH_EQ] = ACTIONS(1351), + [anon_sym_STAR_EQ] = ACTIONS(1351), + [anon_sym_SLASH_EQ] = ACTIONS(1351), + [anon_sym_PERCENT_EQ] = ACTIONS(1351), + [anon_sym_CARET_EQ] = ACTIONS(1351), + [anon_sym_AMP_EQ] = ACTIONS(1351), + [anon_sym_PIPE_EQ] = ACTIONS(1351), + [anon_sym_LT_LT_EQ] = ACTIONS(1351), + [anon_sym_GT_GT_EQ] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_gen] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_impl] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_pub] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_trait] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_unsafe] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1353), + [anon_sym_move] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1351), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1353), + [sym_crate] = ACTIONS(1353), + [sym_metavariable] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1351), + [sym_float_literal] = ACTIONS(1351), + }, + [STATE(320)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(979), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -55457,12 +53556,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(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1079), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -55497,56 +53596,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(339)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1513), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55574,7 +53673,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(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -55609,762 +53708,1322 @@ 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(340)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1514), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_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), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1515), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [STATE(324)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [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(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(344)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(326)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [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(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1911), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(327)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [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(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(465), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [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(329)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [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(330)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [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(331)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [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(332)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [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(333)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -56393,103 +55052,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(347)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(339), + [STATE(334)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(335)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(467), [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(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [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(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56498,110 +55269,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1492), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(339), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(467), [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(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56610,175 +55381,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1492), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(350)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), + [STATE(338)] = { + [sym_bracketed_type] = STATE(3621), + [sym_generic_function] = STATE(1895), + [sym_generic_type_with_turbofish] = STATE(2970), + [sym__expression_except_range] = STATE(1674), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1703), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3145), + [sym_range_expression] = STATE(1898), + [sym_unary_expression] = STATE(1895), + [sym_try_expression] = STATE(1895), + [sym_reference_expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_assignment_expression] = STATE(1895), + [sym_compound_assignment_expr] = STATE(1895), + [sym_type_cast_expression] = STATE(1895), + [sym_return_expression] = STATE(1895), + [sym_yield_expression] = STATE(1895), + [sym_call_expression] = STATE(1895), + [sym_array_expression] = STATE(1895), + [sym_parenthesized_expression] = STATE(1895), + [sym_tuple_expression] = STATE(1895), + [sym_unit_expression] = STATE(1895), + [sym_struct_expression] = STATE(1895), + [sym_if_expression] = STATE(1895), + [sym_match_expression] = STATE(1895), + [sym_while_expression] = STATE(1895), + [sym_loop_expression] = STATE(1895), + [sym_for_expression] = STATE(1895), + [sym_const_block] = STATE(1895), + [sym_closure_expression] = STATE(1895), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3712), + [sym_break_expression] = STATE(1895), + [sym_continue_expression] = STATE(1895), + [sym_index_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_field_expression] = STATE(1634), + [sym_unsafe_block] = STATE(1895), + [sym_async_block] = STATE(1895), + [sym_gen_block] = STATE(1895), + [sym_try_block] = STATE(1895), + [sym_block] = STATE(1895), + [sym__literal] = STATE(1895), + [sym_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(979), + [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(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(339)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56841,56 +55724,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(351)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), + [STATE(340)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1422), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(473), + [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(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(341)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2851), + [sym_variadic_parameter] = STATE(2851), + [sym_parameter] = STATE(2851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(342)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56953,56 +56060,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(352)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57065,56 +56172,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(353)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), + [STATE(344)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2978), + [sym_variadic_parameter] = STATE(2978), + [sym_parameter] = STATE(2978), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2579), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2516), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1293), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(345)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1422), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(346)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57177,56 +56508,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(354)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57289,56 +56620,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [STATE(348)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2989), + [sym_variadic_parameter] = STATE(2989), + [sym_parameter] = STATE(2989), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2714), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(349)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2978), + [sym_variadic_parameter] = STATE(2978), + [sym_parameter] = STATE(2978), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2579), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2516), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1293), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(350)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), + [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(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(351)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57401,90 +57068,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(356)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(465), + [STATE(352)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(479), @@ -57513,56 +57180,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(357)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [STATE(353)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57625,56 +57292,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [STATE(354)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57737,56 +57404,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(359)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), + [STATE(355)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1625), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), + [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(477), + [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(477), + [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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(356)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57849,56 +57628,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(360)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), + [STATE(357)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57961,56 +57740,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(361)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1902), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58073,56 +57852,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1520), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), + [STATE(359)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [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(360)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [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(361)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(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(362)] = { + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58186,102 +58301,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(363)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1609), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -58298,53 +58413,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(364)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), [sym_identifier] = ACTIONS(339), @@ -58410,102 +58525,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(365)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [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(943), - [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -58514,110 +58629,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(366)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [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(1087), - [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -58626,61 +58741,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(367)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3040), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1474), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(218), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), [sym_identifier] = ACTIONS(339), @@ -58746,102 +58861,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(368)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1586), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [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(943), - [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(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -58850,110 +58965,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [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(369)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1689), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58970,102 +59085,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(370)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1610), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -59082,102 +59197,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(371)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1459), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3043), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1924), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1404), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [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(1105), - [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(497), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(477), + [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(505), - [anon_sym_move] = ACTIONS(507), + [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), @@ -59186,110 +59301,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(372)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1611), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -59306,102 +59421,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(373)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1101), - [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(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(497), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(499), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59418,102 +59533,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(374)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -59530,102 +59645,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(375)] = { - [sym_bracketed_type] = STATE(3412), - [sym_generic_function] = STATE(1409), - [sym_generic_type_with_turbofish] = STATE(3022), - [sym__expression_except_range] = STATE(1316), - [sym__expression] = STATE(1492), - [sym_macro_invocation] = STATE(1429), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier_in_expression_position] = STATE(3156), - [sym_range_expression] = STATE(1439), - [sym_unary_expression] = STATE(1409), - [sym_try_expression] = STATE(1409), - [sym_reference_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1409), - [sym_compound_assignment_expr] = STATE(1409), - [sym_type_cast_expression] = STATE(1409), - [sym_return_expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_call_expression] = STATE(1409), - [sym_array_expression] = STATE(1409), - [sym_parenthesized_expression] = STATE(1409), - [sym_tuple_expression] = STATE(1409), - [sym_unit_expression] = STATE(1409), - [sym_struct_expression] = STATE(1409), - [sym_if_expression] = STATE(1409), - [sym_match_expression] = STATE(1409), - [sym_while_expression] = STATE(1409), - [sym_loop_expression] = STATE(1409), - [sym_for_expression] = STATE(1409), - [sym_const_block] = STATE(1409), - [sym_closure_expression] = STATE(1409), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3618), - [sym_break_expression] = STATE(1409), - [sym_continue_expression] = STATE(1409), - [sym_index_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_field_expression] = STATE(1344), - [sym_unsafe_block] = STATE(1409), - [sym_async_block] = STATE(1409), - [sym_gen_block] = STATE(1409), - [sym_try_block] = STATE(1409), - [sym_block] = STATE(1409), - [sym__literal] = STATE(1409), - [sym_string_literal] = STATE(1497), - [sym_raw_string_literal] = STATE(1497), - [sym_boolean_literal] = STATE(1497), + [sym_bracketed_type] = STATE(3540), + [sym_generic_function] = STATE(1507), + [sym_generic_type_with_turbofish] = STATE(3047), + [sym__expression_except_range] = STATE(1399), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(1591), + [sym_scoped_type_identifier_in_expression_position] = STATE(3177), + [sym_range_expression] = STATE(1514), + [sym_unary_expression] = STATE(1507), + [sym_try_expression] = STATE(1507), + [sym_reference_expression] = STATE(1507), + [sym_binary_expression] = STATE(1507), + [sym_assignment_expression] = STATE(1507), + [sym_compound_assignment_expr] = STATE(1507), + [sym_type_cast_expression] = STATE(1507), + [sym_return_expression] = STATE(1507), + [sym_yield_expression] = STATE(1507), + [sym_call_expression] = STATE(1507), + [sym_array_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_tuple_expression] = STATE(1507), + [sym_unit_expression] = STATE(1507), + [sym_struct_expression] = STATE(1507), + [sym_if_expression] = STATE(1507), + [sym_match_expression] = STATE(1507), + [sym_while_expression] = STATE(1507), + [sym_loop_expression] = STATE(1507), + [sym_for_expression] = STATE(1507), + [sym_const_block] = STATE(1507), + [sym_closure_expression] = STATE(1507), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3660), + [sym_break_expression] = STATE(1507), + [sym_continue_expression] = STATE(1507), + [sym_index_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_field_expression] = STATE(1401), + [sym_unsafe_block] = STATE(1507), + [sym_async_block] = STATE(1507), + [sym_gen_block] = STATE(1507), + [sym_try_block] = STATE(1507), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1507), + [sym_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(939), - [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(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_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), @@ -59642,226 +59757,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(376)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(377)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(378)] = { [sym_line_comment] = STATE(378), @@ -60086,1114 +60201,1114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1387), }, [STATE(380)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), [sym_line_comment] = STATE(380), [sym_block_comment] = STATE(380), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1391), + [sym_identifier] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_macro_rules_BANG] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1391), + [anon_sym_u8] = ACTIONS(1393), + [anon_sym_i8] = ACTIONS(1393), + [anon_sym_u16] = ACTIONS(1393), + [anon_sym_i16] = ACTIONS(1393), + [anon_sym_u32] = ACTIONS(1393), + [anon_sym_i32] = ACTIONS(1393), + [anon_sym_u64] = ACTIONS(1393), + [anon_sym_i64] = ACTIONS(1393), + [anon_sym_u128] = ACTIONS(1393), + [anon_sym_i128] = ACTIONS(1393), + [anon_sym_isize] = ACTIONS(1393), + [anon_sym_usize] = ACTIONS(1393), + [anon_sym_f32] = ACTIONS(1393), + [anon_sym_f64] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_str] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_LT_LT] = ACTIONS(1393), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_PLUS_EQ] = ACTIONS(1391), + [anon_sym_DASH_EQ] = ACTIONS(1391), + [anon_sym_STAR_EQ] = ACTIONS(1391), + [anon_sym_SLASH_EQ] = ACTIONS(1391), + [anon_sym_PERCENT_EQ] = ACTIONS(1391), + [anon_sym_CARET_EQ] = ACTIONS(1391), + [anon_sym_AMP_EQ] = ACTIONS(1391), + [anon_sym_PIPE_EQ] = ACTIONS(1391), + [anon_sym_LT_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_GT_EQ] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_as] = ACTIONS(1393), + [anon_sym_async] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_gen] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_impl] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1393), + [anon_sym_match] = ACTIONS(1393), + [anon_sym_mod] = ACTIONS(1393), + [anon_sym_pub] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_trait] = ACTIONS(1393), + [anon_sym_type] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_unsafe] = ACTIONS(1393), + [anon_sym_use] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1393), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_move] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1391), + [aux_sym_string_literal_token1] = ACTIONS(1391), + [sym_char_literal] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1393), + [sym_crate] = ACTIONS(1393), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1391), + [sym_float_literal] = ACTIONS(1391), }, [STATE(381)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_macro_rules_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1395), + [anon_sym_u8] = ACTIONS(1397), + [anon_sym_i8] = ACTIONS(1397), + [anon_sym_u16] = ACTIONS(1397), + [anon_sym_i16] = ACTIONS(1397), + [anon_sym_u32] = ACTIONS(1397), + [anon_sym_i32] = ACTIONS(1397), + [anon_sym_u64] = ACTIONS(1397), + [anon_sym_i64] = ACTIONS(1397), + [anon_sym_u128] = ACTIONS(1397), + [anon_sym_i128] = ACTIONS(1397), + [anon_sym_isize] = ACTIONS(1397), + [anon_sym_usize] = ACTIONS(1397), + [anon_sym_f32] = ACTIONS(1397), + [anon_sym_f64] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_str] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_PLUS_EQ] = ACTIONS(1395), + [anon_sym_DASH_EQ] = ACTIONS(1395), + [anon_sym_STAR_EQ] = ACTIONS(1395), + [anon_sym_SLASH_EQ] = ACTIONS(1395), + [anon_sym_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_CARET_EQ] = ACTIONS(1395), + [anon_sym_AMP_EQ] = ACTIONS(1395), + [anon_sym_PIPE_EQ] = ACTIONS(1395), + [anon_sym_LT_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1395), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_as] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_gen] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1397), + [anon_sym_let] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1397), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_mod] = ACTIONS(1397), + [anon_sym_pub] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_trait] = ACTIONS(1397), + [anon_sym_type] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_use] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1397), + [anon_sym_try] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1395), + [aux_sym_string_literal_token1] = ACTIONS(1395), + [sym_char_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_crate] = ACTIONS(1397), + [sym_metavariable] = ACTIONS(1395), + [sym__raw_string_literal_start] = ACTIONS(1395), + [sym_float_literal] = ACTIONS(1395), }, [STATE(382)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(382), [sym_block_comment] = STATE(382), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(383)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(384)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_macro_rules_BANG] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_gen] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_impl] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_pub] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_trait] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_unsafe] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_move] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym__raw_string_literal_start] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(385)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_macro_rules_BANG] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_PIPE_PIPE] = ACTIONS(1403), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_PERCENT_EQ] = ACTIONS(1403), - [anon_sym_CARET_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_async] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_gen] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_pub] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_trait] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_unsafe] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_move] = ACTIONS(1405), - [anon_sym_try] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym__raw_string_literal_start] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(386)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(386), [sym_block_comment] = STATE(386), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(387)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1409), - [sym_identifier] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_macro_rules_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_QMARK] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1411), - [anon_sym_i8] = ACTIONS(1411), - [anon_sym_u16] = ACTIONS(1411), - [anon_sym_i16] = ACTIONS(1411), - [anon_sym_u32] = ACTIONS(1411), - [anon_sym_i32] = ACTIONS(1411), - [anon_sym_u64] = ACTIONS(1411), - [anon_sym_i64] = ACTIONS(1411), - [anon_sym_u128] = ACTIONS(1411), - [anon_sym_i128] = ACTIONS(1411), - [anon_sym_isize] = ACTIONS(1411), - [anon_sym_usize] = ACTIONS(1411), - [anon_sym_f32] = ACTIONS(1411), - [anon_sym_f64] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_str] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_PERCENT] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1409), - [anon_sym_LT_LT] = ACTIONS(1411), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1409), - [anon_sym_DASH_EQ] = ACTIONS(1409), - [anon_sym_STAR_EQ] = ACTIONS(1409), - [anon_sym_SLASH_EQ] = ACTIONS(1409), - [anon_sym_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_CARET_EQ] = ACTIONS(1409), - [anon_sym_AMP_EQ] = ACTIONS(1409), - [anon_sym_PIPE_EQ] = ACTIONS(1409), - [anon_sym_LT_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_GT_EQ] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1409), - [anon_sym_COLON_COLON] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_async] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_gen] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_impl] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_pub] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_trait] = ACTIONS(1411), - [anon_sym_type] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_unsafe] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1409), - [aux_sym_string_literal_token1] = ACTIONS(1409), - [sym_char_literal] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1411), - [sym_super] = ACTIONS(1411), - [sym_crate] = ACTIONS(1411), - [sym_metavariable] = ACTIONS(1409), - [sym__raw_string_literal_start] = ACTIONS(1409), - [sym_float_literal] = ACTIONS(1409), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(388)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(389)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [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(1415), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_move] = ACTIONS(1415), + [anon_sym_try] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), }, [STATE(390)] = { [sym_line_comment] = STATE(390), @@ -61306,120 +61421,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1417), }, [STATE(391)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(2997), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_macro_rules_BANG] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1423), + [anon_sym_i8] = ACTIONS(1423), + [anon_sym_u16] = ACTIONS(1423), + [anon_sym_i16] = ACTIONS(1423), + [anon_sym_u32] = ACTIONS(1423), + [anon_sym_i32] = ACTIONS(1423), + [anon_sym_u64] = ACTIONS(1423), + [anon_sym_i64] = ACTIONS(1423), + [anon_sym_u128] = ACTIONS(1423), + [anon_sym_i128] = ACTIONS(1423), + [anon_sym_isize] = ACTIONS(1423), + [anon_sym_usize] = ACTIONS(1423), + [anon_sym_f32] = ACTIONS(1423), + [anon_sym_f64] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_str] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1423), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_async] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_default] = ACTIONS(1423), + [anon_sym_enum] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_gen] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_impl] = ACTIONS(1423), + [anon_sym_let] = ACTIONS(1423), + [anon_sym_loop] = ACTIONS(1423), + [anon_sym_match] = ACTIONS(1423), + [anon_sym_mod] = ACTIONS(1423), + [anon_sym_pub] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_struct] = ACTIONS(1423), + [anon_sym_trait] = ACTIONS(1423), + [anon_sym_type] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1423), + [anon_sym_unsafe] = ACTIONS(1423), + [anon_sym_use] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_extern] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1423), + [anon_sym_move] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1423), + [sym_super] = ACTIONS(1423), + [sym_crate] = ACTIONS(1423), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), }, [STATE(392)] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_macro_rules_BANG] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1427), + [anon_sym_i8] = ACTIONS(1427), + [anon_sym_u16] = ACTIONS(1427), + [anon_sym_i16] = ACTIONS(1427), + [anon_sym_u32] = ACTIONS(1427), + [anon_sym_i32] = ACTIONS(1427), + [anon_sym_u64] = ACTIONS(1427), + [anon_sym_i64] = ACTIONS(1427), + [anon_sym_u128] = ACTIONS(1427), + [anon_sym_i128] = ACTIONS(1427), + [anon_sym_isize] = ACTIONS(1427), + [anon_sym_usize] = ACTIONS(1427), + [anon_sym_f32] = ACTIONS(1427), + [anon_sym_f64] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_str] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [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(1429), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_enum] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_gen] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_impl] = ACTIONS(1427), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_loop] = ACTIONS(1427), + [anon_sym_match] = ACTIONS(1427), + [anon_sym_mod] = ACTIONS(1427), + [anon_sym_pub] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_struct] = ACTIONS(1427), + [anon_sym_trait] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_union] = ACTIONS(1427), + [anon_sym_unsafe] = ACTIONS(1427), + [anon_sym_use] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_extern] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1427), + [anon_sym_move] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1425), + [aux_sym_string_literal_token1] = ACTIONS(1425), + [sym_char_literal] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1425), + [sym__raw_string_literal_start] = ACTIONS(1425), + [sym_float_literal] = ACTIONS(1425), + }, + [STATE(393)] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [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_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(394)] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [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), @@ -61525,9 +61860,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1437), [sym_float_literal] = ACTIONS(1437), }, - [STATE(393)] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), + [STATE(395)] = { + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), [ts_builtin_sym_end] = ACTIONS(1441), [sym_identifier] = ACTIONS(1443), [anon_sym_SEMI] = ACTIONS(1441), @@ -61635,559 +61970,119 @@ 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(394)] = { - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [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_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1445), - [anon_sym_BANG_EQ] = ACTIONS(1445), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_LT_EQ] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_as] = 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(395)] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_macro_rules_BANG] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_move] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym_metavariable] = ACTIONS(1039), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), - }, [STATE(396)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2600), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(2834), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2626), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_macro_rules_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_CARET_EQ] = ACTIONS(1449), - [anon_sym_AMP_EQ] = ACTIONS(1449), - [anon_sym_PIPE_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_GT_EQ] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_impl] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_loop] = ACTIONS(1451), - [anon_sym_match] = ACTIONS(1451), - [anon_sym_mod] = ACTIONS(1451), - [anon_sym_pub] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_trait] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_use] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1451), - [anon_sym_move] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), - }, - [STATE(397)] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [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_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_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_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_as] = 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), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), [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(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [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_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), [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), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [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), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), + [STATE(397)] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), [ts_builtin_sym_end] = ACTIONS(1461), [sym_identifier] = ACTIONS(1463), [anon_sym_SEMI] = ACTIONS(1461), @@ -62295,262 +62190,702 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1461), [sym_float_literal] = ACTIONS(1461), }, + [STATE(398)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3400), + [sym_variadic_parameter] = STATE(3400), + [sym_parameter] = STATE(3400), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(399)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2600), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(2834), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2626), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, [STATE(400)] = { [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [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(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(401)] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [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), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_u8] = ACTIONS(1471), - [anon_sym_i8] = ACTIONS(1471), - [anon_sym_u16] = ACTIONS(1471), - [anon_sym_i16] = ACTIONS(1471), - [anon_sym_u32] = ACTIONS(1471), - [anon_sym_i32] = ACTIONS(1471), - [anon_sym_u64] = ACTIONS(1471), - [anon_sym_i64] = ACTIONS(1471), - [anon_sym_u128] = ACTIONS(1471), - [anon_sym_i128] = ACTIONS(1471), - [anon_sym_isize] = ACTIONS(1471), - [anon_sym_usize] = ACTIONS(1471), - [anon_sym_f32] = ACTIONS(1471), - [anon_sym_f64] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_str] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1469), - [anon_sym_DASH_EQ] = ACTIONS(1469), - [anon_sym_STAR_EQ] = ACTIONS(1469), - [anon_sym_SLASH_EQ] = ACTIONS(1469), - [anon_sym_PERCENT_EQ] = ACTIONS(1469), - [anon_sym_CARET_EQ] = ACTIONS(1469), - [anon_sym_AMP_EQ] = ACTIONS(1469), - [anon_sym_PIPE_EQ] = ACTIONS(1469), - [anon_sym_LT_LT_EQ] = ACTIONS(1469), - [anon_sym_GT_GT_EQ] = ACTIONS(1469), - [anon_sym_EQ] = ACTIONS(1471), - [anon_sym_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), - [anon_sym_COLON_COLON] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_as] = ACTIONS(1471), - [anon_sym_async] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_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), + [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(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(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(402)] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_identifier] = ACTIONS(1475), + [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(403)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2600), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(2834), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2626), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(404)] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_macro_rules_BANG] = ACTIONS(1473), + [anon_sym_macro_rules_BANG] = ACTIONS(1477), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1473), + [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(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), + [anon_sym_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(1475), + [anon_sym_BANG] = ACTIONS(1479), [anon_sym_AMP] = ACTIONS(1479), [anon_sym_PIPE] = ACTIONS(1479), [anon_sym_AMP_AMP] = ACTIONS(1477), @@ -62578,166 +62913,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), + [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(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_gen] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_impl] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_pub] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_trait] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_unsafe] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1475), - [anon_sym_move] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1473), - [aux_sym_string_literal_token1] = ACTIONS(1473), - [sym_char_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), - }, - [STATE(403)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3192), - [sym_variadic_parameter] = STATE(3192), - [sym_parameter] = STATE(3192), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [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), + [STATE(405)] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), [ts_builtin_sym_end] = ACTIONS(1481), [sym_identifier] = ACTIONS(1483), [anon_sym_SEMI] = ACTIONS(1481), @@ -62746,9 +62971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_LBRACE] = ACTIONS(1481), [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1483), [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1481), [anon_sym_u8] = ACTIONS(1483), [anon_sym_i8] = ACTIONS(1483), [anon_sym_u16] = ACTIONS(1483), @@ -62767,41 +62992,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1483), [anon_sym_char] = ACTIONS(1483), [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), [anon_sym_BANG] = ACTIONS(1483), [anon_sym_AMP] = ACTIONS(1483), [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), + [anon_sym_AMP_AMP] = ACTIONS(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(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1483), [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), [anon_sym_COLON_COLON] = ACTIONS(1481), [anon_sym_POUND] = ACTIONS(1481), [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1483), [anon_sym_async] = ACTIONS(1483), [anon_sym_break] = ACTIONS(1483), [anon_sym_const] = ACTIONS(1483), @@ -62845,116 +63070,6 @@ 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(405)] = { - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_macro_rules_BANG] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_extern] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_move] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym_metavariable] = ACTIONS(1043), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), @@ -63068,81 +63183,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(407)] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_macro_rules_BANG] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1491), - [anon_sym_i8] = ACTIONS(1491), - [anon_sym_u16] = ACTIONS(1491), - [anon_sym_i16] = ACTIONS(1491), - [anon_sym_u32] = ACTIONS(1491), - [anon_sym_i32] = ACTIONS(1491), - [anon_sym_u64] = ACTIONS(1491), - [anon_sym_i64] = ACTIONS(1491), - [anon_sym_u128] = ACTIONS(1491), - [anon_sym_i128] = ACTIONS(1491), - [anon_sym_isize] = ACTIONS(1491), - [anon_sym_usize] = ACTIONS(1491), - [anon_sym_f32] = ACTIONS(1491), - [anon_sym_f64] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_str] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_gen] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_impl] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_macro_rules_BANG] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_extern] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_move] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1051), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), + }, + [STATE(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), + [anon_sym_macro_rules_BANG] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_async] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_gen] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_impl] = ACTIONS(1491), [anon_sym_let] = ACTIONS(1491), [anon_sym_loop] = ACTIONS(1491), [anon_sym_match] = ACTIONS(1491), @@ -63175,9 +63400,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), @@ -63285,9 +63510,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), @@ -63395,555 +63620,445 @@ 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_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(2997), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_macro_rules_BANG] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_unsafe] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [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(1429), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_macro_rules_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_unsafe] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_yield] = ACTIONS(1507), + [anon_sym_move] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_macro_rules_BANG] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PERCENT_EQ] = ACTIONS(1511), - [anon_sym_CARET_EQ] = ACTIONS(1511), - [anon_sym_AMP_EQ] = ACTIONS(1511), - [anon_sym_PIPE_EQ] = ACTIONS(1511), - [anon_sym_LT_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_GT_EQ] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_as] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_gen] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_impl] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_loop] = ACTIONS(1513), - [anon_sym_match] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_pub] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_trait] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsafe] = ACTIONS(1513), - [anon_sym_use] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_yield] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym__raw_string_literal_start] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [ts_builtin_sym_end] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_macro_rules_BANG] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_async] = ACTIONS(1511), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1511), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1511), + [anon_sym_impl] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), + [anon_sym_loop] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mod] = ACTIONS(1511), + [anon_sym_pub] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_struct] = ACTIONS(1511), + [anon_sym_trait] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_unsafe] = ACTIONS(1511), + [anon_sym_use] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1511), + [anon_sym_extern] = ACTIONS(1511), + [anon_sym_yield] = ACTIONS(1511), + [anon_sym_move] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), }, [STATE(414)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(2997), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_macro_rules_BANG] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_async] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1515), + [anon_sym_for] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_impl] = ACTIONS(1515), + [anon_sym_let] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1515), + [anon_sym_match] = ACTIONS(1515), + [anon_sym_mod] = ACTIONS(1515), + [anon_sym_pub] = ACTIONS(1515), + [anon_sym_return] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1515), + [anon_sym_struct] = ACTIONS(1515), + [anon_sym_trait] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_unsafe] = ACTIONS(1515), + [anon_sym_use] = ACTIONS(1515), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_extern] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(1515), + [anon_sym_move] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), }, [STATE(415)] = { [sym_line_comment] = STATE(415), @@ -64388,595 +64503,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(419)] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [sym_identifier] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_macro_rules_BANG] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1475), - [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(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_async] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_gen] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_impl] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_pub] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_trait] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_unsafe] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1475), - [anon_sym_move] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1473), - [aux_sym_string_literal_token1] = ACTIONS(1473), - [sym_char_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [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(1429), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), }, [STATE(420)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3328), - [sym_variadic_parameter] = STATE(3328), - [sym_parameter] = STATE(3328), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3059), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2896), + [sym_variadic_parameter] = STATE(2896), + [sym_parameter] = STATE(2896), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2651), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(421)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2855), - [sym_variadic_parameter] = STATE(2855), - [sym_parameter] = STATE(2855), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2543), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3070), + [sym_variadic_parameter] = STATE(3070), + [sym_parameter] = STATE(3070), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2785), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(422)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(3018), - [sym_variadic_parameter] = STATE(3018), - [sym_parameter] = STATE(3018), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2627), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(2996), + [sym_variadic_parameter] = STATE(2996), + [sym_parameter] = STATE(2996), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(423)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_self_parameter] = STATE(2964), - [sym_variadic_parameter] = STATE(2964), - [sym_parameter] = STATE(2964), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2640), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(2802), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_self_parameter] = STATE(3227), + [sym_variadic_parameter] = STATE(3227), + [sym_parameter] = STATE(3227), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2912), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(2942), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2881), - [sym_bracketed_type] = STATE(3611), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3353), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2431), - [sym_scoped_identifier] = STATE(2195), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2628), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3030), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3387), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2529), + [sym_scoped_identifier] = STATE(2234), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2765), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1233), [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -64994,822 +65109,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COMMA] = ACTIONS(1551), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(847), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2136), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2167), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(844), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2136), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2167), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(427)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(428)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(844), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2136), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(429)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(847), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2136), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1317), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(430)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(431)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3602), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3261), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2452), - [sym_scoped_identifier] = STATE(2255), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1317), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1319), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(432)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3611), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3353), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2431), - [sym_scoped_identifier] = STATE(2195), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), + [STATE(427)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3387), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2529), + [sym_scoped_identifier] = STATE(2234), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2161), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -65827,93 +65422,613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(428)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2161), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1573), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(429)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2167), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(430)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2161), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(431)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3652), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2466), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2161), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(432)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2161), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1577), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3611), - [sym_lifetime] = STATE(847), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3353), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2431), - [sym_scoped_identifier] = STATE(2195), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2136), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3387), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2529), + [sym_scoped_identifier] = STATE(2234), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2167), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), [aux_sym_function_modifiers_repeat1] = STATE(2258), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -65931,146 +66046,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3610), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(2152), - [sym_scoped_type_identifier] = STATE(2159), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3644), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3300), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2491), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2167), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_ref] = ACTIONS(1303), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1281), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(435)] = { [sym_line_comment] = STATE(435), @@ -66270,31 +66385,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1585), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2170), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), [sym_identifier] = ACTIONS(1587), @@ -66326,7 +66441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1589), [anon_sym__] = ACTIONS(1587), [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1589), [anon_sym_DASH_GT] = ACTIONS(1589), [anon_sym_SQUOTE] = ACTIONS(1587), @@ -66345,8 +66460,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1587), [anon_sym_unsafe] = ACTIONS(1587), [anon_sym_while] = ACTIONS(1587), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), [anon_sym_yield] = ACTIONS(1587), [anon_sym_move] = ACTIONS(1587), [anon_sym_try] = ACTIONS(1587), @@ -66365,31 +66480,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1589), }, [STATE(438)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2130), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2174), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), [sym_identifier] = ACTIONS(1591), @@ -66421,7 +66536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1593), [anon_sym__] = ACTIONS(1591), [anon_sym_DOT_DOT] = ACTIONS(1591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1593), [anon_sym_DASH_GT] = ACTIONS(1593), [anon_sym_SQUOTE] = ACTIONS(1591), @@ -66440,8 +66555,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1591), [anon_sym_unsafe] = ACTIONS(1591), [anon_sym_while] = ACTIONS(1591), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), [anon_sym_yield] = ACTIONS(1591), [anon_sym_move] = ACTIONS(1591), [anon_sym_try] = ACTIONS(1591), @@ -66460,35 +66575,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1593), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -66496,8 +66611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66515,67 +66630,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1607), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(440)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -66583,8 +66698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66602,67 +66717,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(441)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -66670,8 +66785,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66689,67 +66804,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1625), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(442)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -66757,8 +66872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66776,67 +66891,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1627), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(443)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -66844,8 +66959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66863,67 +66978,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1629), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -66931,8 +67046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66950,67 +67065,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1631), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67018,8 +67133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67037,67 +67152,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1633), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67105,8 +67220,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67124,67 +67239,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1635), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67192,8 +67307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67211,67 +67326,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1637), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67279,8 +67394,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67298,67 +67413,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1639), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67366,8 +67481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67385,67 +67500,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1641), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67453,8 +67568,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67472,67 +67587,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1643), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2398), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2399), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2525), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2525), - [sym__literal] = STATE(2525), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2517), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2812), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2812), + [sym__literal] = STATE(2812), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67540,8 +67655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67559,66 +67674,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2378), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2498), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2498), - [sym__literal] = STATE(2498), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2432), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2433), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2518), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2518), + [sym__literal] = STATE(2518), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67626,8 +67741,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67645,66 +67760,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2536), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2536), - [sym__literal] = STATE(2536), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2452), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2366), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2554), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2554), + [sym__literal] = STATE(2554), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67712,8 +67827,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67731,66 +67846,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2342), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2343), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2451), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2451), - [sym__literal] = STATE(2451), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2370), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2371), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2477), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2477), + [sym__literal] = STATE(2477), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67798,8 +67913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67817,66 +67932,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2385), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2386), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_type_binding] = STATE(2506), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_label] = STATE(3664), - [sym_block] = STATE(2506), - [sym__literal] = STATE(2506), - [sym_string_literal] = STATE(3029), - [sym_raw_string_literal] = STATE(3029), - [sym_boolean_literal] = STATE(3029), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2381), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2382), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_type_binding] = STATE(2468), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_label] = STATE(3709), + [sym_block] = STATE(2468), + [sym__literal] = STATE(2468), + [sym_string_literal] = STATE(3112), + [sym_raw_string_literal] = STATE(3112), + [sym_boolean_literal] = STATE(3112), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), [aux_sym_function_modifiers_repeat1] = STATE(2258), @@ -67884,8 +67999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67903,71 +68018,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1289), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1299), [sym_float_literal] = ACTIONS(1617), }, [STATE(456)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3390), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3522), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(464), - [aux_sym_match_arm_repeat1] = STATE(530), + [aux_sym_match_block_repeat1] = STATE(469), + [aux_sym_match_arm_repeat1] = STATE(744), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -68019,40 +68134,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1679), }, [STATE(457)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3534), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3496), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_match_block_repeat1] = STATE(467), - [aux_sym_match_arm_repeat1] = STATE(530), + [aux_sym_match_block_repeat1] = STATE(461), + [aux_sym_match_arm_repeat1] = STATE(744), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -68104,40 +68219,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1679), }, [STATE(458)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3507), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3714), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(530), + [aux_sym_match_block_repeat1] = STATE(467), + [aux_sym_match_arm_repeat1] = STATE(744), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -68189,40 +68304,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1679), }, [STATE(459)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3471), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3603), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(530), + [aux_sym_match_block_repeat1] = STATE(466), + [aux_sym_match_arm_repeat1] = STATE(744), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -68274,177 +68389,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1679), }, [STATE(460)] = { - [sym_else_clause] = STATE(471), + [sym_else_clause] = STATE(487), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_u8] = ACTIONS(1331), - [anon_sym_i8] = ACTIONS(1331), - [anon_sym_u16] = ACTIONS(1331), - [anon_sym_i16] = ACTIONS(1331), - [anon_sym_u32] = ACTIONS(1331), - [anon_sym_i32] = ACTIONS(1331), - [anon_sym_u64] = ACTIONS(1331), - [anon_sym_i64] = ACTIONS(1331), - [anon_sym_u128] = ACTIONS(1331), - [anon_sym_i128] = ACTIONS(1331), - [anon_sym_isize] = ACTIONS(1331), - [anon_sym_usize] = ACTIONS(1331), - [anon_sym_f32] = ACTIONS(1331), - [anon_sym_f64] = ACTIONS(1331), - [anon_sym_bool] = ACTIONS(1331), - [anon_sym_str] = ACTIONS(1331), - [anon_sym_char] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_AMP_AMP] = ACTIONS(1329), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_LT_LT] = ACTIONS(1331), - [anon_sym_GT_GT] = ACTIONS(1331), - [anon_sym_PLUS_EQ] = ACTIONS(1329), - [anon_sym_DASH_EQ] = ACTIONS(1329), - [anon_sym_STAR_EQ] = ACTIONS(1329), - [anon_sym_SLASH_EQ] = ACTIONS(1329), - [anon_sym_PERCENT_EQ] = ACTIONS(1329), - [anon_sym_CARET_EQ] = ACTIONS(1329), - [anon_sym_AMP_EQ] = ACTIONS(1329), - [anon_sym_PIPE_EQ] = ACTIONS(1329), - [anon_sym_LT_LT_EQ] = ACTIONS(1329), - [anon_sym_GT_GT_EQ] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_EQ_EQ] = ACTIONS(1329), - [anon_sym_BANG_EQ] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT_EQ] = ACTIONS(1329), - [anon_sym_LT_EQ] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_as] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_gen] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1351), + [anon_sym_u8] = ACTIONS(1353), + [anon_sym_i8] = ACTIONS(1353), + [anon_sym_u16] = ACTIONS(1353), + [anon_sym_i16] = ACTIONS(1353), + [anon_sym_u32] = ACTIONS(1353), + [anon_sym_i32] = ACTIONS(1353), + [anon_sym_u64] = ACTIONS(1353), + [anon_sym_i64] = ACTIONS(1353), + [anon_sym_u128] = ACTIONS(1353), + [anon_sym_i128] = ACTIONS(1353), + [anon_sym_isize] = ACTIONS(1353), + [anon_sym_usize] = ACTIONS(1353), + [anon_sym_f32] = ACTIONS(1353), + [anon_sym_f64] = ACTIONS(1353), + [anon_sym_bool] = ACTIONS(1353), + [anon_sym_str] = ACTIONS(1353), + [anon_sym_char] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_PERCENT] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1351), + [anon_sym_LT_LT] = ACTIONS(1353), + [anon_sym_GT_GT] = ACTIONS(1353), + [anon_sym_PLUS_EQ] = ACTIONS(1351), + [anon_sym_DASH_EQ] = ACTIONS(1351), + [anon_sym_STAR_EQ] = ACTIONS(1351), + [anon_sym_SLASH_EQ] = ACTIONS(1351), + [anon_sym_PERCENT_EQ] = ACTIONS(1351), + [anon_sym_CARET_EQ] = ACTIONS(1351), + [anon_sym_AMP_EQ] = ACTIONS(1351), + [anon_sym_PIPE_EQ] = ACTIONS(1351), + [anon_sym_LT_LT_EQ] = ACTIONS(1351), + [anon_sym_GT_GT_EQ] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1351), + [anon_sym__] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), + [anon_sym_COMMA] = ACTIONS(1351), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_gen] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_ref] = ACTIONS(1353), [anon_sym_else] = ACTIONS(1697), - [sym_mutable_specifier] = ACTIONS(1331), - [sym_integer_literal] = ACTIONS(1329), - [aux_sym_string_literal_token1] = ACTIONS(1329), - [sym_char_literal] = ACTIONS(1329), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), + [sym_mutable_specifier] = ACTIONS(1353), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1351), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1331), - [sym_super] = ACTIONS(1331), - [sym_crate] = ACTIONS(1331), - [sym_metavariable] = ACTIONS(1329), - [sym__raw_string_literal_start] = ACTIONS(1329), - [sym_float_literal] = ACTIONS(1329), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1353), + [sym_crate] = ACTIONS(1353), + [sym_metavariable] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1351), + [sym_float_literal] = ACTIONS(1351), }, [STATE(461)] = { + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3508), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_QMARK] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1411), - [anon_sym_i8] = ACTIONS(1411), - [anon_sym_u16] = ACTIONS(1411), - [anon_sym_i16] = ACTIONS(1411), - [anon_sym_u32] = ACTIONS(1411), - [anon_sym_i32] = ACTIONS(1411), - [anon_sym_u64] = ACTIONS(1411), - [anon_sym_i64] = ACTIONS(1411), - [anon_sym_u128] = ACTIONS(1411), - [anon_sym_i128] = ACTIONS(1411), - [anon_sym_isize] = ACTIONS(1411), - [anon_sym_usize] = ACTIONS(1411), - [anon_sym_f32] = ACTIONS(1411), - [anon_sym_f64] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_str] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_PERCENT] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1409), - [anon_sym_LT_LT] = ACTIONS(1411), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1409), - [anon_sym_DASH_EQ] = ACTIONS(1409), - [anon_sym_STAR_EQ] = ACTIONS(1409), - [anon_sym_SLASH_EQ] = ACTIONS(1409), - [anon_sym_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_CARET_EQ] = ACTIONS(1409), - [anon_sym_AMP_EQ] = ACTIONS(1409), - [anon_sym_PIPE_EQ] = ACTIONS(1409), - [anon_sym_LT_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_GT_EQ] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym__] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1409), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_COLON_COLON] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1409), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_gen] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1409), - [aux_sym_string_literal_token1] = ACTIONS(1409), - [sym_char_literal] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1411), - [sym_super] = ACTIONS(1411), - [sym_crate] = ACTIONS(1411), - [sym_metavariable] = ACTIONS(1409), - [sym__raw_string_literal_start] = ACTIONS(1409), - [sym_float_literal] = ACTIONS(1409), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(744), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, [STATE(462)] = { [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), + [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(1415), + [sym_mutable_specifier] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), + }, + [STATE(463)] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym_identifier] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1391), + [anon_sym_u8] = ACTIONS(1393), + [anon_sym_i8] = ACTIONS(1393), + [anon_sym_u16] = ACTIONS(1393), + [anon_sym_i16] = ACTIONS(1393), + [anon_sym_u32] = ACTIONS(1393), + [anon_sym_i32] = ACTIONS(1393), + [anon_sym_u64] = ACTIONS(1393), + [anon_sym_i64] = ACTIONS(1393), + [anon_sym_u128] = ACTIONS(1393), + [anon_sym_i128] = ACTIONS(1393), + [anon_sym_isize] = ACTIONS(1393), + [anon_sym_usize] = ACTIONS(1393), + [anon_sym_f32] = ACTIONS(1393), + [anon_sym_f64] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_str] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_LT_LT] = ACTIONS(1393), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_PLUS_EQ] = ACTIONS(1391), + [anon_sym_DASH_EQ] = ACTIONS(1391), + [anon_sym_STAR_EQ] = ACTIONS(1391), + [anon_sym_SLASH_EQ] = ACTIONS(1391), + [anon_sym_PERCENT_EQ] = ACTIONS(1391), + [anon_sym_CARET_EQ] = ACTIONS(1391), + [anon_sym_AMP_EQ] = ACTIONS(1391), + [anon_sym_PIPE_EQ] = ACTIONS(1391), + [anon_sym_LT_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_GT_EQ] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym__] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1391), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_gen] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1393), + [sym_mutable_specifier] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1391), + [aux_sym_string_literal_token1] = ACTIONS(1391), + [sym_char_literal] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1393), + [sym_crate] = ACTIONS(1393), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1391), + [sym_float_literal] = ACTIONS(1391), + }, + [STATE(464)] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_identifier] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1395), + [anon_sym_u8] = ACTIONS(1397), + [anon_sym_i8] = ACTIONS(1397), + [anon_sym_u16] = ACTIONS(1397), + [anon_sym_i16] = ACTIONS(1397), + [anon_sym_u32] = ACTIONS(1397), + [anon_sym_i32] = ACTIONS(1397), + [anon_sym_u64] = ACTIONS(1397), + [anon_sym_i64] = ACTIONS(1397), + [anon_sym_u128] = ACTIONS(1397), + [anon_sym_i128] = ACTIONS(1397), + [anon_sym_isize] = ACTIONS(1397), + [anon_sym_usize] = ACTIONS(1397), + [anon_sym_f32] = ACTIONS(1397), + [anon_sym_f64] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_str] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_PLUS_EQ] = ACTIONS(1395), + [anon_sym_DASH_EQ] = ACTIONS(1395), + [anon_sym_STAR_EQ] = ACTIONS(1395), + [anon_sym_SLASH_EQ] = ACTIONS(1395), + [anon_sym_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_CARET_EQ] = ACTIONS(1395), + [anon_sym_AMP_EQ] = ACTIONS(1395), + [anon_sym_PIPE_EQ] = ACTIONS(1395), + [anon_sym_LT_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1395), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_gen] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1395), + [aux_sym_string_literal_token1] = ACTIONS(1395), + [sym_char_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_crate] = ACTIONS(1397), + [sym_metavariable] = ACTIONS(1395), + [sym__raw_string_literal_start] = ACTIONS(1395), + [sym_float_literal] = ACTIONS(1395), + }, + [STATE(465)] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), [sym_identifier] = ACTIONS(1389), [anon_sym_LPAREN] = ACTIONS(1387), [anon_sym_LBRACK] = ACTIONS(1387), @@ -68526,377 +68893,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1387), [sym_float_literal] = ACTIONS(1387), }, - [STATE(463)] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_PIPE_PIPE] = ACTIONS(1403), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_PERCENT_EQ] = ACTIONS(1403), - [anon_sym_CARET_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_gen] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_ref] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [sym_mutable_specifier] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym__raw_string_literal_start] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), - }, - [STATE(464)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3478), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(530), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), - }, - [STATE(465)] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1383), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u128] = ACTIONS(1385), - [anon_sym_i128] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_PIPE_PIPE] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1385), - [anon_sym_GT_GT] = ACTIONS(1385), - [anon_sym_PLUS_EQ] = ACTIONS(1383), - [anon_sym_DASH_EQ] = ACTIONS(1383), - [anon_sym_STAR_EQ] = ACTIONS(1383), - [anon_sym_SLASH_EQ] = ACTIONS(1383), - [anon_sym_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_CARET_EQ] = ACTIONS(1383), - [anon_sym_AMP_EQ] = ACTIONS(1383), - [anon_sym_PIPE_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_EQ] = ACTIONS(1383), - [anon_sym_GT_GT_EQ] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1383), - [anon_sym_BANG_EQ] = ACTIONS(1383), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1383), - [anon_sym_LT_EQ] = ACTIONS(1383), - [anon_sym__] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_gen] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_ref] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1385), - [sym_mutable_specifier] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1383), - [aux_sym_string_literal_token1] = ACTIONS(1383), - [sym_char_literal] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym__raw_string_literal_start] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), - }, [STATE(466)] = { + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3681), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_gen] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_ref] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [sym_mutable_specifier] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym__raw_string_literal_start] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), - }, - [STATE(467)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3616), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(530), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(744), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -68946,41 +68977,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(468)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3538), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(530), + [STATE(467)] = { + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3686), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(744), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -69030,41 +69061,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, + [STATE(468)] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1385), + [anon_sym_i8] = ACTIONS(1385), + [anon_sym_u16] = ACTIONS(1385), + [anon_sym_i16] = ACTIONS(1385), + [anon_sym_u32] = ACTIONS(1385), + [anon_sym_i32] = ACTIONS(1385), + [anon_sym_u64] = ACTIONS(1385), + [anon_sym_i64] = ACTIONS(1385), + [anon_sym_u128] = ACTIONS(1385), + [anon_sym_i128] = ACTIONS(1385), + [anon_sym_isize] = ACTIONS(1385), + [anon_sym_usize] = ACTIONS(1385), + [anon_sym_f32] = ACTIONS(1385), + [anon_sym_f64] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_str] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1385), + [anon_sym_GT_GT] = ACTIONS(1385), + [anon_sym_PLUS_EQ] = ACTIONS(1383), + [anon_sym_DASH_EQ] = ACTIONS(1383), + [anon_sym_STAR_EQ] = ACTIONS(1383), + [anon_sym_SLASH_EQ] = ACTIONS(1383), + [anon_sym_PERCENT_EQ] = ACTIONS(1383), + [anon_sym_CARET_EQ] = ACTIONS(1383), + [anon_sym_AMP_EQ] = ACTIONS(1383), + [anon_sym_PIPE_EQ] = ACTIONS(1383), + [anon_sym_LT_LT_EQ] = ACTIONS(1383), + [anon_sym_GT_GT_EQ] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_EQ_EQ] = ACTIONS(1383), + [anon_sym_BANG_EQ] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1383), + [anon_sym_LT_EQ] = ACTIONS(1383), + [anon_sym__] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_as] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_ref] = ACTIONS(1385), + [anon_sym_else] = ACTIONS(1385), + [sym_mutable_specifier] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1383), + [aux_sym_string_literal_token1] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_crate] = ACTIONS(1385), + [sym_metavariable] = ACTIONS(1383), + [sym__raw_string_literal_start] = ACTIONS(1383), + [sym_float_literal] = ACTIONS(1383), + }, [STATE(469)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_last_match_arm] = STATE(3484), - [sym_match_pattern] = STATE(3391), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_last_match_arm] = STATE(3595), + [sym_match_pattern] = STATE(3549), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(530), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(744), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -69117,255 +69232,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(470)] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1699), + [anon_sym_i8] = ACTIONS(1699), + [anon_sym_u16] = ACTIONS(1699), + [anon_sym_i16] = ACTIONS(1699), + [anon_sym_u32] = ACTIONS(1699), + [anon_sym_i32] = ACTIONS(1699), + [anon_sym_u64] = ACTIONS(1699), + [anon_sym_i64] = ACTIONS(1699), + [anon_sym_u128] = ACTIONS(1699), + [anon_sym_i128] = ACTIONS(1699), + [anon_sym_isize] = ACTIONS(1699), + [anon_sym_usize] = ACTIONS(1699), + [anon_sym_f32] = ACTIONS(1699), + [anon_sym_f64] = ACTIONS(1699), + [anon_sym_bool] = ACTIONS(1699), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_char] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [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(1429), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym__] = ACTIONS(1699), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1699), + [sym_mutable_specifier] = ACTIONS(1699), + [sym_integer_literal] = ACTIONS(1701), + [aux_sym_string_literal_token1] = ACTIONS(1701), + [sym_char_literal] = ACTIONS(1701), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1701), }, [STATE(471)] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_PLUS_EQ] = ACTIONS(1453), - [anon_sym_DASH_EQ] = ACTIONS(1453), - [anon_sym_STAR_EQ] = ACTIONS(1453), - [anon_sym_SLASH_EQ] = ACTIONS(1453), - [anon_sym_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_CARET_EQ] = ACTIONS(1453), - [anon_sym_AMP_EQ] = ACTIONS(1453), - [anon_sym_PIPE_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_EQ] = ACTIONS(1453), - [anon_sym_GT_GT_EQ] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym__] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_ref] = ACTIONS(1455), - [sym_mutable_specifier] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), - }, - [STATE(472)] = { - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [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(473)] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), [sym_identifier] = ACTIONS(1519), [anon_sym_LPAREN] = ACTIONS(1517), [anon_sym_LBRACK] = ACTIONS(1517), @@ -69446,371 +69395,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1517), [sym_float_literal] = ACTIONS(1517), }, + [STATE(472)] = { + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_arm] = STATE(1396), + [sym_match_pattern] = STATE(3722), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(713), + [sym_identifier] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_u8] = ACTIONS(1712), + [anon_sym_i8] = ACTIONS(1712), + [anon_sym_u16] = ACTIONS(1712), + [anon_sym_i16] = ACTIONS(1712), + [anon_sym_u32] = ACTIONS(1712), + [anon_sym_i32] = ACTIONS(1712), + [anon_sym_u64] = ACTIONS(1712), + [anon_sym_i64] = ACTIONS(1712), + [anon_sym_u128] = ACTIONS(1712), + [anon_sym_i128] = ACTIONS(1712), + [anon_sym_isize] = ACTIONS(1712), + [anon_sym_usize] = ACTIONS(1712), + [anon_sym_f32] = ACTIONS(1712), + [anon_sym_f64] = ACTIONS(1712), + [anon_sym_bool] = ACTIONS(1712), + [anon_sym_str] = ACTIONS(1712), + [anon_sym_char] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1748), + [sym_mutable_specifier] = ACTIONS(1751), + [sym_integer_literal] = ACTIONS(1754), + [aux_sym_string_literal_token1] = ACTIONS(1757), + [sym_char_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1763), + [sym_super] = ACTIONS(1763), + [sym_crate] = ACTIONS(1763), + [sym_metavariable] = ACTIONS(1766), + [sym__raw_string_literal_start] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1754), + }, + [STATE(473)] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [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(474)] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [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), + [sym_identifier] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym__] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_ref] = ACTIONS(1515), + [sym_mutable_specifier] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), }, [STATE(475)] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [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), - [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), + [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(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), + [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(476)] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1459), - [anon_sym_i8] = ACTIONS(1459), - [anon_sym_u16] = ACTIONS(1459), - [anon_sym_i16] = ACTIONS(1459), - [anon_sym_u32] = ACTIONS(1459), - [anon_sym_i32] = ACTIONS(1459), - [anon_sym_u64] = ACTIONS(1459), - [anon_sym_i64] = ACTIONS(1459), - [anon_sym_u128] = ACTIONS(1459), - [anon_sym_i128] = ACTIONS(1459), - [anon_sym_isize] = ACTIONS(1459), - [anon_sym_usize] = ACTIONS(1459), - [anon_sym_f32] = ACTIONS(1459), - [anon_sym_f64] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_str] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1459), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1457), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_gen] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1459), - [sym_mutable_specifier] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym__raw_string_literal_start] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), - }, - [STATE(477)] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [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(478)] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), + [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(1699), - [anon_sym_i8] = ACTIONS(1699), - [anon_sym_u16] = ACTIONS(1699), - [anon_sym_i16] = ACTIONS(1699), - [anon_sym_u32] = ACTIONS(1699), - [anon_sym_i32] = ACTIONS(1699), - [anon_sym_u64] = ACTIONS(1699), - [anon_sym_i64] = ACTIONS(1699), - [anon_sym_u128] = ACTIONS(1699), - [anon_sym_i128] = ACTIONS(1699), - [anon_sym_isize] = ACTIONS(1699), - [anon_sym_usize] = ACTIONS(1699), - [anon_sym_f32] = ACTIONS(1699), - [anon_sym_f64] = ACTIONS(1699), - [anon_sym_bool] = ACTIONS(1699), - [anon_sym_str] = ACTIONS(1699), - [anon_sym_char] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), + [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(1699), - [anon_sym_PIPE] = ACTIONS(1699), + [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), @@ -69829,41 +69778,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(1477), [anon_sym_BANG_EQ] = ACTIONS(1477), [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1479), [anon_sym_GT_EQ] = ACTIONS(1477), [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1699), + [anon_sym__] = ACTIONS(1479), [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1479), [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(1701), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(1477), [anon_sym_as] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1699), - [sym_mutable_specifier] = ACTIONS(1699), - [sym_integer_literal] = ACTIONS(1701), - [aux_sym_string_literal_token1] = ACTIONS(1701), - [sym_char_literal] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_crate] = ACTIONS(1699), - [sym_metavariable] = ACTIONS(1701), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1701), + [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(479)] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), + [STATE(477)] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [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(478)] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), [sym_identifier] = ACTIONS(1443), [anon_sym_LPAREN] = ACTIONS(1441), [anon_sym_LBRACK] = ACTIONS(1441), @@ -69944,420 +69976,503 @@ 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(479)] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_identifier] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1423), + [anon_sym_i8] = ACTIONS(1423), + [anon_sym_u16] = ACTIONS(1423), + [anon_sym_i16] = ACTIONS(1423), + [anon_sym_u32] = ACTIONS(1423), + [anon_sym_i32] = ACTIONS(1423), + [anon_sym_u64] = ACTIONS(1423), + [anon_sym_i64] = ACTIONS(1423), + [anon_sym_u128] = ACTIONS(1423), + [anon_sym_i128] = ACTIONS(1423), + [anon_sym_isize] = ACTIONS(1423), + [anon_sym_usize] = ACTIONS(1423), + [anon_sym_f32] = ACTIONS(1423), + [anon_sym_f64] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_str] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1423), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_default] = ACTIONS(1423), + [anon_sym_gen] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1423), + [anon_sym_ref] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1423), + [sym_super] = ACTIONS(1423), + [sym_crate] = ACTIONS(1423), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), + }, [STATE(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1445), - [anon_sym_BANG_EQ] = ACTIONS(1445), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_LT_EQ] = ACTIONS(1445), - [anon_sym__] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_as] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_gen] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_ref] = ACTIONS(1447), - [sym_mutable_specifier] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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), + [sym_identifier] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1772), + [anon_sym_i8] = ACTIONS(1772), + [anon_sym_u16] = ACTIONS(1772), + [anon_sym_i16] = ACTIONS(1772), + [anon_sym_u32] = ACTIONS(1772), + [anon_sym_i32] = ACTIONS(1772), + [anon_sym_u64] = ACTIONS(1772), + [anon_sym_i64] = ACTIONS(1772), + [anon_sym_u128] = ACTIONS(1772), + [anon_sym_i128] = ACTIONS(1772), + [anon_sym_isize] = ACTIONS(1772), + [anon_sym_usize] = ACTIONS(1772), + [anon_sym_f32] = ACTIONS(1772), + [anon_sym_f64] = ACTIONS(1772), + [anon_sym_bool] = ACTIONS(1772), + [anon_sym_str] = ACTIONS(1772), + [anon_sym_char] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [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(1429), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym__] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_gen] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_ref] = ACTIONS(1772), + [sym_mutable_specifier] = ACTIONS(1772), + [sym_integer_literal] = ACTIONS(1774), + [aux_sym_string_literal_token1] = ACTIONS(1774), + [sym_char_literal] = ACTIONS(1774), + [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(1772), + [sym_super] = ACTIONS(1772), + [sym_crate] = ACTIONS(1772), + [sym_metavariable] = ACTIONS(1774), + [sym__raw_string_literal_start] = ACTIONS(1774), + [sym_float_literal] = ACTIONS(1774), }, [STATE(481)] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [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), + [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(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), + [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(482)] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1491), - [anon_sym_i8] = ACTIONS(1491), - [anon_sym_u16] = ACTIONS(1491), - [anon_sym_i16] = ACTIONS(1491), - [anon_sym_u32] = ACTIONS(1491), - [anon_sym_i32] = ACTIONS(1491), - [anon_sym_u64] = ACTIONS(1491), - [anon_sym_i64] = ACTIONS(1491), - [anon_sym_u128] = ACTIONS(1491), - [anon_sym_i128] = ACTIONS(1491), - [anon_sym_isize] = ACTIONS(1491), - [anon_sym_usize] = ACTIONS(1491), - [anon_sym_f32] = ACTIONS(1491), - [anon_sym_f64] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_str] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym__] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_gen] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_ref] = ACTIONS(1491), - [sym_mutable_specifier] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), + [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(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym__raw_string_literal_start] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), + [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(483)] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_u8] = ACTIONS(1419), - [anon_sym_i8] = ACTIONS(1419), - [anon_sym_u16] = ACTIONS(1419), - [anon_sym_i16] = ACTIONS(1419), - [anon_sym_u32] = ACTIONS(1419), - [anon_sym_i32] = ACTIONS(1419), - [anon_sym_u64] = ACTIONS(1419), - [anon_sym_i64] = ACTIONS(1419), - [anon_sym_u128] = ACTIONS(1419), - [anon_sym_i128] = ACTIONS(1419), - [anon_sym_isize] = ACTIONS(1419), - [anon_sym_usize] = ACTIONS(1419), - [anon_sym_f32] = ACTIONS(1419), - [anon_sym_f64] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_str] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_PERCENT] = ACTIONS(1419), - [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(1419), - [anon_sym_GT_GT] = ACTIONS(1419), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_CARET_EQ] = ACTIONS(1417), - [anon_sym_AMP_EQ] = ACTIONS(1417), - [anon_sym_PIPE_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_EQ] = ACTIONS(1417), - [anon_sym_GT_GT_EQ] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_LT_EQ] = ACTIONS(1417), - [anon_sym__] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_COLON_COLON] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_as] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_gen] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_ref] = ACTIONS(1419), - [sym_mutable_specifier] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [aux_sym_string_literal_token1] = ACTIONS(1417), - [sym_char_literal] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), + [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(1419), - [sym_super] = ACTIONS(1419), - [sym_crate] = ACTIONS(1419), - [sym_metavariable] = ACTIONS(1417), - [sym__raw_string_literal_start] = ACTIONS(1417), - [sym_float_literal] = ACTIONS(1417), + [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(484)] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1703), - [anon_sym_i8] = ACTIONS(1703), - [anon_sym_u16] = ACTIONS(1703), - [anon_sym_i16] = ACTIONS(1703), - [anon_sym_u32] = ACTIONS(1703), - [anon_sym_i32] = ACTIONS(1703), - [anon_sym_u64] = ACTIONS(1703), - [anon_sym_i64] = ACTIONS(1703), - [anon_sym_u128] = ACTIONS(1703), - [anon_sym_i128] = ACTIONS(1703), - [anon_sym_isize] = ACTIONS(1703), - [anon_sym_usize] = ACTIONS(1703), - [anon_sym_f32] = ACTIONS(1703), - [anon_sym_f64] = ACTIONS(1703), - [anon_sym_bool] = ACTIONS(1703), - [anon_sym_str] = ACTIONS(1703), - [anon_sym_char] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [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(1703), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1703), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_gen] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_ref] = ACTIONS(1703), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1705), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1703), - [sym_super] = ACTIONS(1703), - [sym_crate] = ACTIONS(1703), - [sym_metavariable] = ACTIONS(1705), - [sym__raw_string_literal_start] = ACTIONS(1705), - [sym_float_literal] = ACTIONS(1705), + [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), + [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(485)] = { [sym_line_comment] = STATE(485), @@ -70445,89 +70560,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(486)] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym__] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_ref] = ACTIONS(1487), - [sym_mutable_specifier] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_LBRACK] = 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_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__] = ACTIONS(1469), + [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_COMMA] = ACTIONS(1467), + [anon_sym_COLON_COLON] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_gen] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1469), + [anon_sym_ref] = ACTIONS(1469), + [sym_mutable_specifier] = 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(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), + [sym_identifier] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_gen] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1419), + [sym_mutable_specifier] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym__raw_string_literal_start] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), + }, + [STATE(488)] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), [sym_identifier] = ACTIONS(1499), [anon_sym_LPAREN] = ACTIONS(1497), [anon_sym_LBRACK] = ACTIONS(1497), @@ -70608,366 +70806,283 @@ 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(488)] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym__] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1509), - [sym_mutable_specifier] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), - }, [STATE(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1505), - [sym_mutable_specifier] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [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(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [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), + [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(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), + [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(491)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_arm] = STATE(1312), - [sym_match_pattern] = STATE(3411), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(727), - [sym_identifier] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_u8] = ACTIONS(1716), - [anon_sym_i8] = ACTIONS(1716), - [anon_sym_u16] = ACTIONS(1716), - [anon_sym_i16] = ACTIONS(1716), - [anon_sym_u32] = ACTIONS(1716), - [anon_sym_i32] = ACTIONS(1716), - [anon_sym_u64] = ACTIONS(1716), - [anon_sym_i64] = ACTIONS(1716), - [anon_sym_u128] = ACTIONS(1716), - [anon_sym_i128] = ACTIONS(1716), - [anon_sym_isize] = ACTIONS(1716), - [anon_sym_usize] = ACTIONS(1716), - [anon_sym_f32] = ACTIONS(1716), - [anon_sym_f64] = ACTIONS(1716), - [anon_sym_bool] = ACTIONS(1716), - [anon_sym_str] = ACTIONS(1716), - [anon_sym_char] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym__] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_gen] = ACTIONS(1749), - [anon_sym_union] = ACTIONS(1749), - [anon_sym_ref] = ACTIONS(1752), - [sym_mutable_specifier] = ACTIONS(1755), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1761), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1767), - [sym_super] = ACTIONS(1767), - [sym_crate] = ACTIONS(1767), - [sym_metavariable] = ACTIONS(1770), - [sym__raw_string_literal_start] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym__] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_gen] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_ref] = ACTIONS(1491), + [sym_mutable_specifier] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym__raw_string_literal_start] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), }, [STATE(492)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(3047), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2741), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(3036), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2614), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), [sym_identifier] = ACTIONS(1776), @@ -70991,65 +71106,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1449), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COMMA] = ACTIONS(1788), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1455), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(493)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(2997), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(2834), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2626), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), [sym_identifier] = ACTIONS(1776), @@ -71073,121 +71188,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1449), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1453), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1455), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(494)] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1409), - [sym_identifier] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_macro_rules_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1411), - [anon_sym_i8] = ACTIONS(1411), - [anon_sym_u16] = ACTIONS(1411), - [anon_sym_i16] = ACTIONS(1411), - [anon_sym_u32] = ACTIONS(1411), - [anon_sym_i32] = ACTIONS(1411), - [anon_sym_u64] = ACTIONS(1411), - [anon_sym_i64] = ACTIONS(1411), - [anon_sym_u128] = ACTIONS(1411), - [anon_sym_i128] = ACTIONS(1411), - [anon_sym_isize] = ACTIONS(1411), - [anon_sym_usize] = ACTIONS(1411), - [anon_sym_f32] = ACTIONS(1411), - [anon_sym_f64] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_str] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_COLON_COLON] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_async] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_gen] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_impl] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_pub] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_trait] = ACTIONS(1411), - [anon_sym_type] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_unsafe] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1409), - [aux_sym_string_literal_token1] = ACTIONS(1409), - [sym_char_literal] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1411), - [sym_super] = ACTIONS(1411), - [sym_crate] = ACTIONS(1411), - [sym_metavariable] = ACTIONS(1409), - [sym__raw_string_literal_start] = ACTIONS(1409), - [sym_float_literal] = ACTIONS(1409), - }, - [STATE(495)] = { - [sym_line_comment] = STATE(495), - [sym_block_comment] = STATE(495), [ts_builtin_sym_end] = ACTIONS(1802), [sym_identifier] = ACTIONS(1804), [anon_sym_SEMI] = ACTIONS(1802), @@ -71266,9 +71300,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1802), [sym_float_literal] = ACTIONS(1802), }, - [STATE(496)] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), + [STATE(495)] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), [ts_builtin_sym_end] = ACTIONS(1806), [sym_identifier] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(1806), @@ -71347,9 +71381,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1806), [sym_float_literal] = ACTIONS(1806), }, - [STATE(497)] = { - [sym_line_comment] = STATE(497), - [sym_block_comment] = STATE(497), + [STATE(496)] = { + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), [ts_builtin_sym_end] = ACTIONS(1810), [sym_identifier] = ACTIONS(1812), [anon_sym_SEMI] = ACTIONS(1810), @@ -71428,9 +71462,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1810), [sym_float_literal] = ACTIONS(1810), }, - [STATE(498)] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), + [STATE(497)] = { + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), [ts_builtin_sym_end] = ACTIONS(1814), [sym_identifier] = ACTIONS(1816), [anon_sym_SEMI] = ACTIONS(1814), @@ -71509,9 +71543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1814), [sym_float_literal] = ACTIONS(1814), }, - [STATE(499)] = { - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), + [STATE(498)] = { + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), [ts_builtin_sym_end] = ACTIONS(1818), [sym_identifier] = ACTIONS(1820), [anon_sym_SEMI] = ACTIONS(1818), @@ -71590,9 +71624,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1818), [sym_float_literal] = ACTIONS(1818), }, - [STATE(500)] = { - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), + [STATE(499)] = { + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), [ts_builtin_sym_end] = ACTIONS(1822), [sym_identifier] = ACTIONS(1824), [anon_sym_SEMI] = ACTIONS(1822), @@ -71671,9 +71705,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1822), [sym_float_literal] = ACTIONS(1822), }, - [STATE(501)] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), + [STATE(500)] = { + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), [ts_builtin_sym_end] = ACTIONS(1826), [sym_identifier] = ACTIONS(1828), [anon_sym_SEMI] = ACTIONS(1826), @@ -71752,9 +71786,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1826), [sym_float_literal] = ACTIONS(1826), }, - [STATE(502)] = { - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), + [STATE(501)] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(1830), [sym_identifier] = ACTIONS(1832), [anon_sym_SEMI] = ACTIONS(1830), @@ -71833,9 +71867,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1830), [sym_float_literal] = ACTIONS(1830), }, - [STATE(503)] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), + [STATE(502)] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), [ts_builtin_sym_end] = ACTIONS(1834), [sym_identifier] = ACTIONS(1836), [anon_sym_SEMI] = ACTIONS(1834), @@ -71914,9 +71948,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1834), [sym_float_literal] = ACTIONS(1834), }, - [STATE(504)] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), + [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), @@ -71995,9 +72029,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(505)] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), + [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), @@ -72076,9 +72110,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(506)] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), + [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), @@ -72157,9 +72191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1846), [sym_float_literal] = ACTIONS(1846), }, - [STATE(507)] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), + [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), @@ -72238,9 +72272,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(508)] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), + [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), @@ -72319,9 +72353,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(509)] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), + [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), @@ -72400,9 +72434,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(510)] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), + [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), @@ -72481,9 +72515,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(511)] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), + [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), @@ -72562,9 +72596,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(512)] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), + [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), @@ -72643,9 +72677,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(513)] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), + [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), @@ -72724,9 +72758,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(514)] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), + [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), @@ -72805,9 +72839,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(515)] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), + [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), @@ -72886,9 +72920,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(516)] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), + [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), @@ -72967,9 +73001,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(517)] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), + [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), @@ -73048,9 +73082,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(518)] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), + [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), @@ -73129,9 +73163,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(519)] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), + [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), @@ -73210,9 +73244,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(520)] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [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), @@ -73291,9 +73325,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(521)] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [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), @@ -73372,9 +73406,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(522)] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), + [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), @@ -73453,9 +73487,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(523)] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), + [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), @@ -73534,9 +73568,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(524)] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [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), @@ -73615,9 +73649,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(525)] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [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), @@ -73696,9 +73730,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(526)] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [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), @@ -73777,9 +73811,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(527)] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [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), @@ -73858,9 +73892,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(528)] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [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), @@ -73939,9 +73973,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(529)] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [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), @@ -74020,90 +74054,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(530)] = { - [sym_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_pattern] = STATE(3504), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), - [aux_sym_match_arm_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), - }, - [STATE(531)] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [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), @@ -74182,9 +74135,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(532)] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [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), @@ -74263,9 +74216,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1946), [sym_float_literal] = ACTIONS(1946), }, - [STATE(533)] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [STATE(531)] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1950), [sym_identifier] = ACTIONS(1952), [anon_sym_SEMI] = ACTIONS(1950), @@ -74344,9 +74297,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1950), [sym_float_literal] = ACTIONS(1950), }, - [STATE(534)] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [STATE(532)] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1954), [sym_identifier] = ACTIONS(1956), [anon_sym_SEMI] = ACTIONS(1954), @@ -74425,9 +74378,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1954), [sym_float_literal] = ACTIONS(1954), }, - [STATE(535)] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [STATE(533)] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1958), [sym_identifier] = ACTIONS(1960), [anon_sym_SEMI] = ACTIONS(1958), @@ -74506,9 +74459,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1958), [sym_float_literal] = ACTIONS(1958), }, - [STATE(536)] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [STATE(534)] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1962), [sym_identifier] = ACTIONS(1964), [anon_sym_SEMI] = ACTIONS(1962), @@ -74587,9 +74540,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1962), [sym_float_literal] = ACTIONS(1962), }, - [STATE(537)] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [STATE(535)] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1966), [sym_identifier] = ACTIONS(1968), [anon_sym_SEMI] = ACTIONS(1966), @@ -74668,9 +74621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1966), [sym_float_literal] = ACTIONS(1966), }, - [STATE(538)] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1970), [sym_identifier] = ACTIONS(1972), [anon_sym_SEMI] = ACTIONS(1970), @@ -74749,9 +74702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1970), [sym_float_literal] = ACTIONS(1970), }, - [STATE(539)] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1974), [sym_identifier] = ACTIONS(1976), [anon_sym_SEMI] = ACTIONS(1974), @@ -74830,9 +74783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1974), [sym_float_literal] = ACTIONS(1974), }, - [STATE(540)] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(1978), [sym_identifier] = ACTIONS(1980), [anon_sym_SEMI] = ACTIONS(1978), @@ -74911,9 +74864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1978), [sym_float_literal] = ACTIONS(1978), }, - [STATE(541)] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(1982), [sym_identifier] = ACTIONS(1984), [anon_sym_SEMI] = ACTIONS(1982), @@ -74992,9 +74945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1982), [sym_float_literal] = ACTIONS(1982), }, - [STATE(542)] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(1986), [sym_identifier] = ACTIONS(1988), [anon_sym_SEMI] = ACTIONS(1986), @@ -75073,9 +75026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1986), [sym_float_literal] = ACTIONS(1986), }, - [STATE(543)] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(1990), [sym_identifier] = ACTIONS(1992), [anon_sym_SEMI] = ACTIONS(1990), @@ -75154,9 +75107,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1990), [sym_float_literal] = ACTIONS(1990), }, - [STATE(544)] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(1994), [sym_identifier] = ACTIONS(1996), [anon_sym_SEMI] = ACTIONS(1994), @@ -75235,9 +75188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1994), [sym_float_literal] = ACTIONS(1994), }, - [STATE(545)] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [STATE(543)] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_SEMI] = ACTIONS(1998), @@ -75316,9 +75269,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1998), [sym_float_literal] = ACTIONS(1998), }, - [STATE(546)] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [STATE(544)] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(2002), [sym_identifier] = ACTIONS(2004), [anon_sym_SEMI] = ACTIONS(2002), @@ -75397,9 +75350,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2002), [sym_float_literal] = ACTIONS(2002), }, - [STATE(547)] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [STATE(545)] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), [anon_sym_SEMI] = ACTIONS(2006), @@ -75478,9 +75431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2006), [sym_float_literal] = ACTIONS(2006), }, - [STATE(548)] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [STATE(546)] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(2010), [sym_identifier] = ACTIONS(2012), [anon_sym_SEMI] = ACTIONS(2010), @@ -75559,9 +75512,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2010), [sym_float_literal] = ACTIONS(2010), }, - [STATE(549)] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [STATE(547)] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(2014), [sym_identifier] = ACTIONS(2016), [anon_sym_SEMI] = ACTIONS(2014), @@ -75640,9 +75593,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), }, - [STATE(550)] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [STATE(548)] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(2018), [sym_identifier] = ACTIONS(2020), [anon_sym_SEMI] = ACTIONS(2018), @@ -75721,9 +75674,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2018), [sym_float_literal] = ACTIONS(2018), }, - [STATE(551)] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [STATE(549)] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(2022), [sym_identifier] = ACTIONS(2024), [anon_sym_SEMI] = ACTIONS(2022), @@ -75802,9 +75755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2022), [sym_float_literal] = ACTIONS(2022), }, - [STATE(552)] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), + [STATE(550)] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), [ts_builtin_sym_end] = ACTIONS(2026), [sym_identifier] = ACTIONS(2028), [anon_sym_SEMI] = ACTIONS(2026), @@ -75883,9 +75836,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2026), [sym_float_literal] = ACTIONS(2026), }, - [STATE(553)] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), + [STATE(551)] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), [ts_builtin_sym_end] = ACTIONS(2030), [sym_identifier] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2030), @@ -75964,9 +75917,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), }, - [STATE(554)] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [STATE(552)] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), [ts_builtin_sym_end] = ACTIONS(2034), [sym_identifier] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2034), @@ -76045,171 +75998,1791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2034), [sym_float_literal] = ACTIONS(2034), }, + [STATE(553)] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2038), + [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(554)] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [ts_builtin_sym_end] = ACTIONS(2042), + [sym_identifier] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2042), + [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(555)] = { - [sym_empty_statement] = STATE(1327), - [sym_macro_definition] = STATE(1327), - [sym_attribute_item] = STATE(1327), - [sym_inner_attribute_item] = STATE(1327), - [sym_mod_item] = STATE(1327), - [sym_foreign_mod_item] = STATE(1327), - [sym_struct_item] = STATE(1327), - [sym_union_item] = STATE(1327), - [sym_enum_item] = STATE(1327), - [sym_extern_crate_declaration] = STATE(1327), - [sym_const_item] = STATE(1327), - [sym_static_item] = STATE(1327), - [sym_type_item] = STATE(1327), - [sym_function_item] = STATE(1327), - [sym_function_signature_item] = STATE(1327), - [sym_function_modifiers] = STATE(3675), - [sym_impl_item] = STATE(1327), - [sym_trait_item] = STATE(1327), - [sym_associated_type] = STATE(1327), - [sym_let_declaration] = STATE(1327), - [sym_use_declaration] = STATE(1327), - [sym_extern_modifier] = STATE(2174), - [sym_visibility_modifier] = STATE(1971), - [sym_bracketed_type] = STATE(3402), - [sym_generic_type_with_turbofish] = STATE(3427), - [sym_macro_invocation] = STATE(1327), - [sym_scoped_identifier] = STATE(3358), [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [aux_sym_declaration_list_repeat1] = STATE(555), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(2038), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_macro_rules_BANG] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_u8] = ACTIONS(2049), - [anon_sym_i8] = ACTIONS(2049), - [anon_sym_u16] = ACTIONS(2049), - [anon_sym_i16] = ACTIONS(2049), - [anon_sym_u32] = ACTIONS(2049), - [anon_sym_i32] = ACTIONS(2049), - [anon_sym_u64] = ACTIONS(2049), - [anon_sym_i64] = ACTIONS(2049), - [anon_sym_u128] = ACTIONS(2049), - [anon_sym_i128] = ACTIONS(2049), - [anon_sym_isize] = ACTIONS(2049), - [anon_sym_usize] = ACTIONS(2049), - [anon_sym_f32] = ACTIONS(2049), - [anon_sym_f64] = ACTIONS(2049), - [anon_sym_bool] = ACTIONS(2049), - [anon_sym_str] = ACTIONS(2049), - [anon_sym_char] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2052), - [anon_sym_COLON_COLON] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_gen] = ACTIONS(2076), - [anon_sym_impl] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_mod] = ACTIONS(2085), - [anon_sym_pub] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_unsafe] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_crate] = ACTIONS(2118), - [sym_metavariable] = ACTIONS(2121), + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_macro_rules_BANG] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_u8] = ACTIONS(2048), + [anon_sym_i8] = ACTIONS(2048), + [anon_sym_u16] = ACTIONS(2048), + [anon_sym_i16] = ACTIONS(2048), + [anon_sym_u32] = ACTIONS(2048), + [anon_sym_i32] = ACTIONS(2048), + [anon_sym_u64] = ACTIONS(2048), + [anon_sym_i64] = ACTIONS(2048), + [anon_sym_u128] = ACTIONS(2048), + [anon_sym_i128] = ACTIONS(2048), + [anon_sym_isize] = ACTIONS(2048), + [anon_sym_usize] = ACTIONS(2048), + [anon_sym_f32] = ACTIONS(2048), + [anon_sym_f64] = ACTIONS(2048), + [anon_sym_bool] = ACTIONS(2048), + [anon_sym_str] = ACTIONS(2048), + [anon_sym_char] = ACTIONS(2048), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_DOT_DOT] = ACTIONS(2046), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2048), + [anon_sym_async] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_fn] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_gen] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_impl] = ACTIONS(2048), + [anon_sym_let] = ACTIONS(2048), + [anon_sym_loop] = ACTIONS(2048), + [anon_sym_match] = ACTIONS(2048), + [anon_sym_mod] = ACTIONS(2048), + [anon_sym_pub] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_trait] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_unsafe] = ACTIONS(2048), + [anon_sym_use] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym_yield] = ACTIONS(2048), + [anon_sym_move] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [sym_integer_literal] = ACTIONS(2046), + [aux_sym_string_literal_token1] = ACTIONS(2046), + [sym_char_literal] = ACTIONS(2046), + [anon_sym_true] = ACTIONS(2048), + [anon_sym_false] = ACTIONS(2048), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_crate] = ACTIONS(2048), + [sym_metavariable] = ACTIONS(2046), + [sym__raw_string_literal_start] = ACTIONS(2046), + [sym_float_literal] = ACTIONS(2046), }, [STATE(556)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(3272), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2829), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_macro_rules_BANG] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_u8] = ACTIONS(2052), + [anon_sym_i8] = ACTIONS(2052), + [anon_sym_u16] = ACTIONS(2052), + [anon_sym_i16] = ACTIONS(2052), + [anon_sym_u32] = ACTIONS(2052), + [anon_sym_i32] = ACTIONS(2052), + [anon_sym_u64] = ACTIONS(2052), + [anon_sym_i64] = ACTIONS(2052), + [anon_sym_u128] = ACTIONS(2052), + [anon_sym_i128] = ACTIONS(2052), + [anon_sym_isize] = ACTIONS(2052), + [anon_sym_usize] = ACTIONS(2052), + [anon_sym_f32] = ACTIONS(2052), + [anon_sym_f64] = ACTIONS(2052), + [anon_sym_bool] = ACTIONS(2052), + [anon_sym_str] = ACTIONS(2052), + [anon_sym_char] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_LT] = ACTIONS(2050), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2052), + [anon_sym_async] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_gen] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_impl] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_loop] = ACTIONS(2052), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_mod] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_trait] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_use] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_yield] = ACTIONS(2052), + [anon_sym_move] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2052), + [sym_integer_literal] = ACTIONS(2050), + [aux_sym_string_literal_token1] = ACTIONS(2050), + [sym_char_literal] = ACTIONS(2050), + [anon_sym_true] = ACTIONS(2052), + [anon_sym_false] = ACTIONS(2052), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_crate] = ACTIONS(2052), + [sym_metavariable] = ACTIONS(2050), + [sym__raw_string_literal_start] = ACTIONS(2050), + [sym_float_literal] = ACTIONS(2050), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2056), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_macro_rules_BANG] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_u8] = ACTIONS(2056), + [anon_sym_i8] = ACTIONS(2056), + [anon_sym_u16] = ACTIONS(2056), + [anon_sym_i16] = ACTIONS(2056), + [anon_sym_u32] = ACTIONS(2056), + [anon_sym_i32] = ACTIONS(2056), + [anon_sym_u64] = ACTIONS(2056), + [anon_sym_i64] = ACTIONS(2056), + [anon_sym_u128] = ACTIONS(2056), + [anon_sym_i128] = ACTIONS(2056), + [anon_sym_isize] = ACTIONS(2056), + [anon_sym_usize] = ACTIONS(2056), + [anon_sym_f32] = ACTIONS(2056), + [anon_sym_f64] = ACTIONS(2056), + [anon_sym_bool] = ACTIONS(2056), + [anon_sym_str] = ACTIONS(2056), + [anon_sym_char] = ACTIONS(2056), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_DOT_DOT] = ACTIONS(2054), + [anon_sym_COLON_COLON] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2056), + [anon_sym_async] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_fn] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_gen] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_impl] = ACTIONS(2056), + [anon_sym_let] = ACTIONS(2056), + [anon_sym_loop] = ACTIONS(2056), + [anon_sym_match] = ACTIONS(2056), + [anon_sym_mod] = ACTIONS(2056), + [anon_sym_pub] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_trait] = ACTIONS(2056), + [anon_sym_type] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_unsafe] = ACTIONS(2056), + [anon_sym_use] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym_yield] = ACTIONS(2056), + [anon_sym_move] = ACTIONS(2056), + [anon_sym_try] = ACTIONS(2056), + [sym_integer_literal] = ACTIONS(2054), + [aux_sym_string_literal_token1] = ACTIONS(2054), + [sym_char_literal] = ACTIONS(2054), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2056), + [sym_super] = ACTIONS(2056), + [sym_crate] = ACTIONS(2056), + [sym_metavariable] = ACTIONS(2054), + [sym__raw_string_literal_start] = ACTIONS(2054), + [sym_float_literal] = ACTIONS(2054), + }, + [STATE(558)] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [ts_builtin_sym_end] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_macro_rules_BANG] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2058), + [anon_sym_u8] = ACTIONS(2060), + [anon_sym_i8] = ACTIONS(2060), + [anon_sym_u16] = ACTIONS(2060), + [anon_sym_i16] = ACTIONS(2060), + [anon_sym_u32] = ACTIONS(2060), + [anon_sym_i32] = ACTIONS(2060), + [anon_sym_u64] = ACTIONS(2060), + [anon_sym_i64] = ACTIONS(2060), + [anon_sym_u128] = ACTIONS(2060), + [anon_sym_i128] = ACTIONS(2060), + [anon_sym_isize] = ACTIONS(2060), + [anon_sym_usize] = ACTIONS(2060), + [anon_sym_f32] = ACTIONS(2060), + [anon_sym_f64] = ACTIONS(2060), + [anon_sym_bool] = ACTIONS(2060), + [anon_sym_str] = ACTIONS(2060), + [anon_sym_char] = ACTIONS(2060), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2058), + [anon_sym_DOT_DOT] = ACTIONS(2058), + [anon_sym_COLON_COLON] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_async] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_gen] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_impl] = ACTIONS(2060), + [anon_sym_let] = ACTIONS(2060), + [anon_sym_loop] = ACTIONS(2060), + [anon_sym_match] = ACTIONS(2060), + [anon_sym_mod] = ACTIONS(2060), + [anon_sym_pub] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_trait] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_unsafe] = ACTIONS(2060), + [anon_sym_use] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym_yield] = ACTIONS(2060), + [anon_sym_move] = ACTIONS(2060), + [anon_sym_try] = ACTIONS(2060), + [sym_integer_literal] = ACTIONS(2058), + [aux_sym_string_literal_token1] = ACTIONS(2058), + [sym_char_literal] = ACTIONS(2058), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_crate] = ACTIONS(2060), + [sym_metavariable] = ACTIONS(2058), + [sym__raw_string_literal_start] = ACTIONS(2058), + [sym_float_literal] = ACTIONS(2058), + }, + [STATE(559)] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [ts_builtin_sym_end] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2064), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_macro_rules_BANG] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_u8] = ACTIONS(2064), + [anon_sym_i8] = ACTIONS(2064), + [anon_sym_u16] = ACTIONS(2064), + [anon_sym_i16] = ACTIONS(2064), + [anon_sym_u32] = ACTIONS(2064), + [anon_sym_i32] = ACTIONS(2064), + [anon_sym_u64] = ACTIONS(2064), + [anon_sym_i64] = ACTIONS(2064), + [anon_sym_u128] = ACTIONS(2064), + [anon_sym_i128] = ACTIONS(2064), + [anon_sym_isize] = ACTIONS(2064), + [anon_sym_usize] = ACTIONS(2064), + [anon_sym_f32] = ACTIONS(2064), + [anon_sym_f64] = ACTIONS(2064), + [anon_sym_bool] = ACTIONS(2064), + [anon_sym_str] = ACTIONS(2064), + [anon_sym_char] = ACTIONS(2064), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_COLON_COLON] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_fn] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_gen] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_impl] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_mod] = ACTIONS(2064), + [anon_sym_pub] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_trait] = ACTIONS(2064), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_unsafe] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_yield] = ACTIONS(2064), + [anon_sym_move] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2064), + [sym_integer_literal] = ACTIONS(2062), + [aux_sym_string_literal_token1] = ACTIONS(2062), + [sym_char_literal] = ACTIONS(2062), + [anon_sym_true] = ACTIONS(2064), + [anon_sym_false] = ACTIONS(2064), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2064), + [sym_super] = ACTIONS(2064), + [sym_crate] = ACTIONS(2064), + [sym_metavariable] = ACTIONS(2062), + [sym__raw_string_literal_start] = ACTIONS(2062), + [sym_float_literal] = ACTIONS(2062), + }, + [STATE(560)] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), + [ts_builtin_sym_end] = ACTIONS(2066), + [sym_identifier] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_macro_rules_BANG] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_u8] = ACTIONS(2068), + [anon_sym_i8] = ACTIONS(2068), + [anon_sym_u16] = ACTIONS(2068), + [anon_sym_i16] = ACTIONS(2068), + [anon_sym_u32] = ACTIONS(2068), + [anon_sym_i32] = ACTIONS(2068), + [anon_sym_u64] = ACTIONS(2068), + [anon_sym_i64] = ACTIONS(2068), + [anon_sym_u128] = ACTIONS(2068), + [anon_sym_i128] = ACTIONS(2068), + [anon_sym_isize] = ACTIONS(2068), + [anon_sym_usize] = ACTIONS(2068), + [anon_sym_f32] = ACTIONS(2068), + [anon_sym_f64] = ACTIONS(2068), + [anon_sym_bool] = ACTIONS(2068), + [anon_sym_str] = ACTIONS(2068), + [anon_sym_char] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [anon_sym_fn] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_gen] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_impl] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_mod] = ACTIONS(2068), + [anon_sym_pub] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_struct] = ACTIONS(2068), + [anon_sym_trait] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_union] = ACTIONS(2068), + [anon_sym_unsafe] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_move] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [sym_integer_literal] = ACTIONS(2066), + [aux_sym_string_literal_token1] = ACTIONS(2066), + [sym_char_literal] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = ACTIONS(2068), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_crate] = ACTIONS(2068), + [sym_metavariable] = ACTIONS(2066), + [sym__raw_string_literal_start] = ACTIONS(2066), + [sym_float_literal] = ACTIONS(2066), + }, + [STATE(561)] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_macro_rules_BANG] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_u8] = ACTIONS(2072), + [anon_sym_i8] = ACTIONS(2072), + [anon_sym_u16] = ACTIONS(2072), + [anon_sym_i16] = ACTIONS(2072), + [anon_sym_u32] = ACTIONS(2072), + [anon_sym_i32] = ACTIONS(2072), + [anon_sym_u64] = ACTIONS(2072), + [anon_sym_i64] = ACTIONS(2072), + [anon_sym_u128] = ACTIONS(2072), + [anon_sym_i128] = ACTIONS(2072), + [anon_sym_isize] = ACTIONS(2072), + [anon_sym_usize] = ACTIONS(2072), + [anon_sym_f32] = ACTIONS(2072), + [anon_sym_f64] = ACTIONS(2072), + [anon_sym_bool] = ACTIONS(2072), + [anon_sym_str] = ACTIONS(2072), + [anon_sym_char] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_DOT_DOT] = ACTIONS(2070), + [anon_sym_COLON_COLON] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_fn] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_gen] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_impl] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_mod] = ACTIONS(2072), + [anon_sym_pub] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_trait] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_unsafe] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_move] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [sym_integer_literal] = ACTIONS(2070), + [aux_sym_string_literal_token1] = ACTIONS(2070), + [sym_char_literal] = ACTIONS(2070), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_crate] = ACTIONS(2072), + [sym_metavariable] = ACTIONS(2070), + [sym__raw_string_literal_start] = ACTIONS(2070), + [sym_float_literal] = ACTIONS(2070), + }, + [STATE(562)] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_macro_rules_BANG] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_u8] = ACTIONS(2076), + [anon_sym_i8] = ACTIONS(2076), + [anon_sym_u16] = ACTIONS(2076), + [anon_sym_i16] = ACTIONS(2076), + [anon_sym_u32] = ACTIONS(2076), + [anon_sym_i32] = ACTIONS(2076), + [anon_sym_u64] = ACTIONS(2076), + [anon_sym_i64] = ACTIONS(2076), + [anon_sym_u128] = ACTIONS(2076), + [anon_sym_i128] = ACTIONS(2076), + [anon_sym_isize] = ACTIONS(2076), + [anon_sym_usize] = ACTIONS(2076), + [anon_sym_f32] = ACTIONS(2076), + [anon_sym_f64] = ACTIONS(2076), + [anon_sym_bool] = ACTIONS(2076), + [anon_sym_str] = ACTIONS(2076), + [anon_sym_char] = ACTIONS(2076), + [anon_sym_DASH] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_DOT_DOT] = ACTIONS(2074), + [anon_sym_COLON_COLON] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2076), + [anon_sym_async] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_default] = ACTIONS(2076), + [anon_sym_enum] = ACTIONS(2076), + [anon_sym_fn] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_gen] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_impl] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2076), + [anon_sym_loop] = ACTIONS(2076), + [anon_sym_match] = ACTIONS(2076), + [anon_sym_mod] = ACTIONS(2076), + [anon_sym_pub] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_trait] = ACTIONS(2076), + [anon_sym_type] = ACTIONS(2076), + [anon_sym_union] = ACTIONS(2076), + [anon_sym_unsafe] = ACTIONS(2076), + [anon_sym_use] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym_yield] = ACTIONS(2076), + [anon_sym_move] = ACTIONS(2076), + [anon_sym_try] = ACTIONS(2076), + [sym_integer_literal] = ACTIONS(2074), + [aux_sym_string_literal_token1] = ACTIONS(2074), + [sym_char_literal] = ACTIONS(2074), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_crate] = ACTIONS(2076), + [sym_metavariable] = ACTIONS(2074), + [sym__raw_string_literal_start] = ACTIONS(2074), + [sym_float_literal] = ACTIONS(2074), + }, + [STATE(563)] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_macro_rules_BANG] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(2078), + [anon_sym_u8] = ACTIONS(2080), + [anon_sym_i8] = ACTIONS(2080), + [anon_sym_u16] = ACTIONS(2080), + [anon_sym_i16] = ACTIONS(2080), + [anon_sym_u32] = ACTIONS(2080), + [anon_sym_i32] = ACTIONS(2080), + [anon_sym_u64] = ACTIONS(2080), + [anon_sym_i64] = ACTIONS(2080), + [anon_sym_u128] = ACTIONS(2080), + [anon_sym_i128] = ACTIONS(2080), + [anon_sym_isize] = ACTIONS(2080), + [anon_sym_usize] = ACTIONS(2080), + [anon_sym_f32] = ACTIONS(2080), + [anon_sym_f64] = ACTIONS(2080), + [anon_sym_bool] = ACTIONS(2080), + [anon_sym_str] = ACTIONS(2080), + [anon_sym_char] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2078), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_fn] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_gen] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_impl] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_mod] = ACTIONS(2080), + [anon_sym_pub] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_trait] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_move] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [sym_integer_literal] = ACTIONS(2078), + [aux_sym_string_literal_token1] = ACTIONS(2078), + [sym_char_literal] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2080), + [anon_sym_false] = ACTIONS(2080), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_crate] = ACTIONS(2080), + [sym_metavariable] = ACTIONS(2078), + [sym__raw_string_literal_start] = ACTIONS(2078), + [sym_float_literal] = ACTIONS(2078), + }, + [STATE(564)] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), + [ts_builtin_sym_end] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_macro_rules_BANG] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_u8] = ACTIONS(2084), + [anon_sym_i8] = ACTIONS(2084), + [anon_sym_u16] = ACTIONS(2084), + [anon_sym_i16] = ACTIONS(2084), + [anon_sym_u32] = ACTIONS(2084), + [anon_sym_i32] = ACTIONS(2084), + [anon_sym_u64] = ACTIONS(2084), + [anon_sym_i64] = ACTIONS(2084), + [anon_sym_u128] = ACTIONS(2084), + [anon_sym_i128] = ACTIONS(2084), + [anon_sym_isize] = ACTIONS(2084), + [anon_sym_usize] = ACTIONS(2084), + [anon_sym_f32] = ACTIONS(2084), + [anon_sym_f64] = ACTIONS(2084), + [anon_sym_bool] = ACTIONS(2084), + [anon_sym_str] = ACTIONS(2084), + [anon_sym_char] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_async] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_fn] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_gen] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_impl] = ACTIONS(2084), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_loop] = ACTIONS(2084), + [anon_sym_match] = ACTIONS(2084), + [anon_sym_mod] = ACTIONS(2084), + [anon_sym_pub] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_trait] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_unsafe] = ACTIONS(2084), + [anon_sym_use] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym_yield] = ACTIONS(2084), + [anon_sym_move] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2084), + [sym_integer_literal] = ACTIONS(2082), + [aux_sym_string_literal_token1] = ACTIONS(2082), + [sym_char_literal] = ACTIONS(2082), + [anon_sym_true] = ACTIONS(2084), + [anon_sym_false] = ACTIONS(2084), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_crate] = ACTIONS(2084), + [sym_metavariable] = ACTIONS(2082), + [sym__raw_string_literal_start] = ACTIONS(2082), + [sym_float_literal] = ACTIONS(2082), + }, + [STATE(565)] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_macro_rules_BANG] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2088), + [anon_sym_i8] = ACTIONS(2088), + [anon_sym_u16] = ACTIONS(2088), + [anon_sym_i16] = ACTIONS(2088), + [anon_sym_u32] = ACTIONS(2088), + [anon_sym_i32] = ACTIONS(2088), + [anon_sym_u64] = ACTIONS(2088), + [anon_sym_i64] = ACTIONS(2088), + [anon_sym_u128] = ACTIONS(2088), + [anon_sym_i128] = ACTIONS(2088), + [anon_sym_isize] = ACTIONS(2088), + [anon_sym_usize] = ACTIONS(2088), + [anon_sym_f32] = ACTIONS(2088), + [anon_sym_f64] = ACTIONS(2088), + [anon_sym_bool] = ACTIONS(2088), + [anon_sym_str] = ACTIONS(2088), + [anon_sym_char] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_DOT_DOT] = ACTIONS(2086), + [anon_sym_COLON_COLON] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2088), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_gen] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_impl] = ACTIONS(2088), + [anon_sym_let] = ACTIONS(2088), + [anon_sym_loop] = ACTIONS(2088), + [anon_sym_match] = ACTIONS(2088), + [anon_sym_mod] = ACTIONS(2088), + [anon_sym_pub] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_trait] = ACTIONS(2088), + [anon_sym_type] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_unsafe] = ACTIONS(2088), + [anon_sym_use] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym_yield] = ACTIONS(2088), + [anon_sym_move] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2088), + [sym_integer_literal] = ACTIONS(2086), + [aux_sym_string_literal_token1] = ACTIONS(2086), + [sym_char_literal] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = ACTIONS(2088), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_crate] = ACTIONS(2088), + [sym_metavariable] = ACTIONS(2086), + [sym__raw_string_literal_start] = ACTIONS(2086), + [sym_float_literal] = ACTIONS(2086), + }, + [STATE(566)] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_u8] = ACTIONS(2092), + [anon_sym_i8] = ACTIONS(2092), + [anon_sym_u16] = ACTIONS(2092), + [anon_sym_i16] = ACTIONS(2092), + [anon_sym_u32] = ACTIONS(2092), + [anon_sym_i32] = ACTIONS(2092), + [anon_sym_u64] = ACTIONS(2092), + [anon_sym_i64] = ACTIONS(2092), + [anon_sym_u128] = ACTIONS(2092), + [anon_sym_i128] = ACTIONS(2092), + [anon_sym_isize] = ACTIONS(2092), + [anon_sym_usize] = ACTIONS(2092), + [anon_sym_f32] = ACTIONS(2092), + [anon_sym_f64] = ACTIONS(2092), + [anon_sym_bool] = ACTIONS(2092), + [anon_sym_str] = ACTIONS(2092), + [anon_sym_char] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2090), + [anon_sym_POUND] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2092), + [anon_sym_async] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + [anon_sym_fn] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_gen] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_impl] = ACTIONS(2092), + [anon_sym_let] = ACTIONS(2092), + [anon_sym_loop] = ACTIONS(2092), + [anon_sym_match] = ACTIONS(2092), + [anon_sym_mod] = ACTIONS(2092), + [anon_sym_pub] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(2092), + [anon_sym_trait] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2092), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_unsafe] = ACTIONS(2092), + [anon_sym_use] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym_yield] = ACTIONS(2092), + [anon_sym_move] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2092), + [sym_integer_literal] = ACTIONS(2090), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2090), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_crate] = ACTIONS(2092), + [sym_metavariable] = ACTIONS(2090), + [sym__raw_string_literal_start] = ACTIONS(2090), + [sym_float_literal] = ACTIONS(2090), + }, + [STATE(567)] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), + [ts_builtin_sym_end] = ACTIONS(2094), + [sym_identifier] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_macro_rules_BANG] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_DOT_DOT] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2094), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_async] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_fn] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_gen] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_impl] = ACTIONS(2096), + [anon_sym_let] = ACTIONS(2096), + [anon_sym_loop] = ACTIONS(2096), + [anon_sym_match] = ACTIONS(2096), + [anon_sym_mod] = ACTIONS(2096), + [anon_sym_pub] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_trait] = ACTIONS(2096), + [anon_sym_type] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_unsafe] = ACTIONS(2096), + [anon_sym_use] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym_yield] = ACTIONS(2096), + [anon_sym_move] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [sym_integer_literal] = ACTIONS(2094), + [aux_sym_string_literal_token1] = ACTIONS(2094), + [sym_char_literal] = ACTIONS(2094), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_crate] = ACTIONS(2096), + [sym_metavariable] = ACTIONS(2094), + [sym__raw_string_literal_start] = ACTIONS(2094), + [sym_float_literal] = ACTIONS(2094), + }, + [STATE(568)] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_macro_rules_BANG] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_u8] = ACTIONS(2100), + [anon_sym_i8] = ACTIONS(2100), + [anon_sym_u16] = ACTIONS(2100), + [anon_sym_i16] = ACTIONS(2100), + [anon_sym_u32] = ACTIONS(2100), + [anon_sym_i32] = ACTIONS(2100), + [anon_sym_u64] = ACTIONS(2100), + [anon_sym_i64] = ACTIONS(2100), + [anon_sym_u128] = ACTIONS(2100), + [anon_sym_i128] = ACTIONS(2100), + [anon_sym_isize] = ACTIONS(2100), + [anon_sym_usize] = ACTIONS(2100), + [anon_sym_f32] = ACTIONS(2100), + [anon_sym_f64] = ACTIONS(2100), + [anon_sym_bool] = ACTIONS(2100), + [anon_sym_str] = ACTIONS(2100), + [anon_sym_char] = ACTIONS(2100), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_DOT_DOT] = ACTIONS(2098), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_fn] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_gen] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_impl] = ACTIONS(2100), + [anon_sym_let] = ACTIONS(2100), + [anon_sym_loop] = ACTIONS(2100), + [anon_sym_match] = ACTIONS(2100), + [anon_sym_mod] = ACTIONS(2100), + [anon_sym_pub] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_trait] = ACTIONS(2100), + [anon_sym_type] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_unsafe] = ACTIONS(2100), + [anon_sym_use] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym_yield] = ACTIONS(2100), + [anon_sym_move] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [sym_integer_literal] = ACTIONS(2098), + [aux_sym_string_literal_token1] = ACTIONS(2098), + [sym_char_literal] = ACTIONS(2098), + [anon_sym_true] = ACTIONS(2100), + [anon_sym_false] = ACTIONS(2100), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_crate] = ACTIONS(2100), + [sym_metavariable] = ACTIONS(2098), + [sym__raw_string_literal_start] = ACTIONS(2098), + [sym_float_literal] = ACTIONS(2098), + }, + [STATE(569)] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_macro_rules_BANG] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_u8] = ACTIONS(2104), + [anon_sym_i8] = ACTIONS(2104), + [anon_sym_u16] = ACTIONS(2104), + [anon_sym_i16] = ACTIONS(2104), + [anon_sym_u32] = ACTIONS(2104), + [anon_sym_i32] = ACTIONS(2104), + [anon_sym_u64] = ACTIONS(2104), + [anon_sym_i64] = ACTIONS(2104), + [anon_sym_u128] = ACTIONS(2104), + [anon_sym_i128] = ACTIONS(2104), + [anon_sym_isize] = ACTIONS(2104), + [anon_sym_usize] = ACTIONS(2104), + [anon_sym_f32] = ACTIONS(2104), + [anon_sym_f64] = ACTIONS(2104), + [anon_sym_bool] = ACTIONS(2104), + [anon_sym_str] = ACTIONS(2104), + [anon_sym_char] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_DOT_DOT] = ACTIONS(2102), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2104), + [anon_sym_async] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_fn] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_gen] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_impl] = ACTIONS(2104), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_loop] = ACTIONS(2104), + [anon_sym_match] = ACTIONS(2104), + [anon_sym_mod] = ACTIONS(2104), + [anon_sym_pub] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_trait] = ACTIONS(2104), + [anon_sym_type] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_unsafe] = ACTIONS(2104), + [anon_sym_use] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym_yield] = ACTIONS(2104), + [anon_sym_move] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [sym_integer_literal] = ACTIONS(2102), + [aux_sym_string_literal_token1] = ACTIONS(2102), + [sym_char_literal] = ACTIONS(2102), + [anon_sym_true] = ACTIONS(2104), + [anon_sym_false] = ACTIONS(2104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_crate] = ACTIONS(2104), + [sym_metavariable] = ACTIONS(2102), + [sym__raw_string_literal_start] = ACTIONS(2102), + [sym_float_literal] = ACTIONS(2102), + }, + [STATE(570)] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_macro_rules_BANG] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_u8] = ACTIONS(2108), + [anon_sym_i8] = ACTIONS(2108), + [anon_sym_u16] = ACTIONS(2108), + [anon_sym_i16] = ACTIONS(2108), + [anon_sym_u32] = ACTIONS(2108), + [anon_sym_i32] = ACTIONS(2108), + [anon_sym_u64] = ACTIONS(2108), + [anon_sym_i64] = ACTIONS(2108), + [anon_sym_u128] = ACTIONS(2108), + [anon_sym_i128] = ACTIONS(2108), + [anon_sym_isize] = ACTIONS(2108), + [anon_sym_usize] = ACTIONS(2108), + [anon_sym_f32] = ACTIONS(2108), + [anon_sym_f64] = ACTIONS(2108), + [anon_sym_bool] = ACTIONS(2108), + [anon_sym_str] = ACTIONS(2108), + [anon_sym_char] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_DOT_DOT] = ACTIONS(2106), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_async] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_impl] = ACTIONS(2108), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_loop] = ACTIONS(2108), + [anon_sym_match] = ACTIONS(2108), + [anon_sym_mod] = ACTIONS(2108), + [anon_sym_pub] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_trait] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_unsafe] = ACTIONS(2108), + [anon_sym_use] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_yield] = ACTIONS(2108), + [anon_sym_move] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2106), + [aux_sym_string_literal_token1] = ACTIONS(2106), + [sym_char_literal] = ACTIONS(2106), + [anon_sym_true] = ACTIONS(2108), + [anon_sym_false] = ACTIONS(2108), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_crate] = ACTIONS(2108), + [sym_metavariable] = ACTIONS(2106), + [sym__raw_string_literal_start] = ACTIONS(2106), + [sym_float_literal] = ACTIONS(2106), + }, + [STATE(571)] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_macro_rules_BANG] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_u8] = ACTIONS(2112), + [anon_sym_i8] = ACTIONS(2112), + [anon_sym_u16] = ACTIONS(2112), + [anon_sym_i16] = ACTIONS(2112), + [anon_sym_u32] = ACTIONS(2112), + [anon_sym_i32] = ACTIONS(2112), + [anon_sym_u64] = ACTIONS(2112), + [anon_sym_i64] = ACTIONS(2112), + [anon_sym_u128] = ACTIONS(2112), + [anon_sym_i128] = ACTIONS(2112), + [anon_sym_isize] = ACTIONS(2112), + [anon_sym_usize] = ACTIONS(2112), + [anon_sym_f32] = ACTIONS(2112), + [anon_sym_f64] = ACTIONS(2112), + [anon_sym_bool] = ACTIONS(2112), + [anon_sym_str] = ACTIONS(2112), + [anon_sym_char] = ACTIONS(2112), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_DOT_DOT] = ACTIONS(2110), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_POUND] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2112), + [anon_sym_async] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_gen] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2112), + [anon_sym_loop] = ACTIONS(2112), + [anon_sym_match] = ACTIONS(2112), + [anon_sym_mod] = ACTIONS(2112), + [anon_sym_pub] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_trait] = ACTIONS(2112), + [anon_sym_type] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_unsafe] = ACTIONS(2112), + [anon_sym_use] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym_yield] = ACTIONS(2112), + [anon_sym_move] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [sym_integer_literal] = ACTIONS(2110), + [aux_sym_string_literal_token1] = ACTIONS(2110), + [sym_char_literal] = ACTIONS(2110), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_crate] = ACTIONS(2112), + [sym_metavariable] = ACTIONS(2110), + [sym__raw_string_literal_start] = ACTIONS(2110), + [sym_float_literal] = ACTIONS(2110), + }, + [STATE(572)] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_macro_rules_BANG] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_u8] = ACTIONS(2116), + [anon_sym_i8] = ACTIONS(2116), + [anon_sym_u16] = ACTIONS(2116), + [anon_sym_i16] = ACTIONS(2116), + [anon_sym_u32] = ACTIONS(2116), + [anon_sym_i32] = ACTIONS(2116), + [anon_sym_u64] = ACTIONS(2116), + [anon_sym_i64] = ACTIONS(2116), + [anon_sym_u128] = ACTIONS(2116), + [anon_sym_i128] = ACTIONS(2116), + [anon_sym_isize] = ACTIONS(2116), + [anon_sym_usize] = ACTIONS(2116), + [anon_sym_f32] = ACTIONS(2116), + [anon_sym_f64] = ACTIONS(2116), + [anon_sym_bool] = ACTIONS(2116), + [anon_sym_str] = ACTIONS(2116), + [anon_sym_char] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_DOT_DOT] = ACTIONS(2114), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_fn] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_gen] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_impl] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_loop] = ACTIONS(2116), + [anon_sym_match] = ACTIONS(2116), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_trait] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_unsafe] = ACTIONS(2116), + [anon_sym_use] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_move] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [sym_integer_literal] = ACTIONS(2114), + [aux_sym_string_literal_token1] = ACTIONS(2114), + [sym_char_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2116), + [anon_sym_false] = ACTIONS(2116), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_crate] = ACTIONS(2116), + [sym_metavariable] = ACTIONS(2114), + [sym__raw_string_literal_start] = ACTIONS(2114), + [sym_float_literal] = ACTIONS(2114), + }, + [STATE(573)] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_macro_rules_BANG] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_u8] = ACTIONS(2120), + [anon_sym_i8] = ACTIONS(2120), + [anon_sym_u16] = ACTIONS(2120), + [anon_sym_i16] = ACTIONS(2120), + [anon_sym_u32] = ACTIONS(2120), + [anon_sym_i32] = ACTIONS(2120), + [anon_sym_u64] = ACTIONS(2120), + [anon_sym_i64] = ACTIONS(2120), + [anon_sym_u128] = ACTIONS(2120), + [anon_sym_i128] = ACTIONS(2120), + [anon_sym_isize] = ACTIONS(2120), + [anon_sym_usize] = ACTIONS(2120), + [anon_sym_f32] = ACTIONS(2120), + [anon_sym_f64] = ACTIONS(2120), + [anon_sym_bool] = ACTIONS(2120), + [anon_sym_str] = ACTIONS(2120), + [anon_sym_char] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_fn] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_gen] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_impl] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_mod] = ACTIONS(2120), + [anon_sym_pub] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_unsafe] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_move] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [sym_integer_literal] = ACTIONS(2118), + [aux_sym_string_literal_token1] = ACTIONS(2118), + [sym_char_literal] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_crate] = ACTIONS(2120), + [sym_metavariable] = ACTIONS(2118), + [sym__raw_string_literal_start] = ACTIONS(2118), + [sym_float_literal] = ACTIONS(2118), + }, + [STATE(574)] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_macro_rules_BANG] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_u8] = ACTIONS(2124), + [anon_sym_i8] = ACTIONS(2124), + [anon_sym_u16] = ACTIONS(2124), + [anon_sym_i16] = ACTIONS(2124), + [anon_sym_u32] = ACTIONS(2124), + [anon_sym_i32] = ACTIONS(2124), + [anon_sym_u64] = ACTIONS(2124), + [anon_sym_i64] = ACTIONS(2124), + [anon_sym_u128] = ACTIONS(2124), + [anon_sym_i128] = ACTIONS(2124), + [anon_sym_isize] = ACTIONS(2124), + [anon_sym_usize] = ACTIONS(2124), + [anon_sym_f32] = ACTIONS(2124), + [anon_sym_f64] = ACTIONS(2124), + [anon_sym_bool] = ACTIONS(2124), + [anon_sym_str] = ACTIONS(2124), + [anon_sym_char] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_fn] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_gen] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_impl] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_loop] = ACTIONS(2124), + [anon_sym_match] = ACTIONS(2124), + [anon_sym_mod] = ACTIONS(2124), + [anon_sym_pub] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_trait] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_unsafe] = ACTIONS(2124), + [anon_sym_use] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_move] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [sym_integer_literal] = ACTIONS(2122), + [aux_sym_string_literal_token1] = ACTIONS(2122), + [sym_char_literal] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_crate] = ACTIONS(2124), + [sym_metavariable] = ACTIONS(2122), + [sym__raw_string_literal_start] = ACTIONS(2122), + [sym_float_literal] = ACTIONS(2122), + }, + [STATE(575)] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), [ts_builtin_sym_end] = ACTIONS(2126), [sym_identifier] = ACTIONS(2128), [anon_sym_SEMI] = ACTIONS(2126), @@ -76288,9 +77861,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2126), [sym_float_literal] = ACTIONS(2126), }, - [STATE(558)] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [STATE(576)] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), [ts_builtin_sym_end] = ACTIONS(2130), [sym_identifier] = ACTIONS(2132), [anon_sym_SEMI] = ACTIONS(2130), @@ -76369,9 +77942,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2130), [sym_float_literal] = ACTIONS(2130), }, - [STATE(559)] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [STATE(577)] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(2134), [sym_identifier] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2134), @@ -76450,9 +78023,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2134), [sym_float_literal] = ACTIONS(2134), }, - [STATE(560)] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [STATE(578)] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), [ts_builtin_sym_end] = ACTIONS(2138), [sym_identifier] = ACTIONS(2140), [anon_sym_SEMI] = ACTIONS(2138), @@ -76531,9 +78104,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2138), [sym_float_literal] = ACTIONS(2138), }, - [STATE(561)] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [STATE(579)] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), [anon_sym_SEMI] = ACTIONS(2142), @@ -76612,9 +78185,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2142), [sym_float_literal] = ACTIONS(2142), }, - [STATE(562)] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [STATE(580)] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2146), [sym_identifier] = ACTIONS(2148), [anon_sym_SEMI] = ACTIONS(2146), @@ -76693,9 +78266,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2146), [sym_float_literal] = ACTIONS(2146), }, - [STATE(563)] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), + [STATE(581)] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2150), [sym_identifier] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2150), @@ -76774,9 +78347,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2150), [sym_float_literal] = ACTIONS(2150), }, - [STATE(564)] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [STATE(582)] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2156), [anon_sym_SEMI] = ACTIONS(2154), @@ -76855,9 +78428,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2154), [sym_float_literal] = ACTIONS(2154), }, - [STATE(565)] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), + [STATE(583)] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_SEMI] = ACTIONS(2158), @@ -76936,9 +78509,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2158), [sym_float_literal] = ACTIONS(2158), }, - [STATE(566)] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), + [STATE(584)] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_SEMI] = ACTIONS(2162), @@ -77017,9 +78590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2162), [sym_float_literal] = ACTIONS(2162), }, - [STATE(567)] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_SEMI] = ACTIONS(2166), @@ -77098,90 +78671,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2166), [sym_float_literal] = ACTIONS(2166), }, - [STATE(568)] = { - [sym_empty_statement] = STATE(1327), - [sym_macro_definition] = STATE(1327), - [sym_attribute_item] = STATE(1327), - [sym_inner_attribute_item] = STATE(1327), - [sym_mod_item] = STATE(1327), - [sym_foreign_mod_item] = STATE(1327), - [sym_struct_item] = STATE(1327), - [sym_union_item] = STATE(1327), - [sym_enum_item] = STATE(1327), - [sym_extern_crate_declaration] = STATE(1327), - [sym_const_item] = STATE(1327), - [sym_static_item] = STATE(1327), - [sym_type_item] = STATE(1327), - [sym_function_item] = STATE(1327), - [sym_function_signature_item] = STATE(1327), - [sym_function_modifiers] = STATE(3675), - [sym_impl_item] = STATE(1327), - [sym_trait_item] = STATE(1327), - [sym_associated_type] = STATE(1327), - [sym_let_declaration] = STATE(1327), - [sym_use_declaration] = STATE(1327), - [sym_extern_modifier] = STATE(2174), - [sym_visibility_modifier] = STATE(1971), - [sym_bracketed_type] = STATE(3402), - [sym_generic_type_with_turbofish] = STATE(3427), - [sym_macro_invocation] = STATE(1327), - [sym_scoped_identifier] = STATE(3358), - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), - [aux_sym_declaration_list_repeat1] = STATE(689), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2172), + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [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(587)] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2174), [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_RBRACE] = 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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_u8] = ACTIONS(2176), + [anon_sym_i8] = ACTIONS(2176), + [anon_sym_u16] = ACTIONS(2176), + [anon_sym_i16] = ACTIONS(2176), + [anon_sym_u32] = ACTIONS(2176), + [anon_sym_i32] = ACTIONS(2176), + [anon_sym_u64] = ACTIONS(2176), + [anon_sym_i64] = ACTIONS(2176), + [anon_sym_u128] = ACTIONS(2176), + [anon_sym_i128] = ACTIONS(2176), + [anon_sym_isize] = ACTIONS(2176), + [anon_sym_usize] = ACTIONS(2176), + [anon_sym_f32] = ACTIONS(2176), + [anon_sym_f64] = ACTIONS(2176), + [anon_sym_bool] = ACTIONS(2176), + [anon_sym_str] = ACTIONS(2176), + [anon_sym_char] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_DOT_DOT] = ACTIONS(2174), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [anon_sym_fn] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_gen] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_impl] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_loop] = ACTIONS(2176), + [anon_sym_match] = ACTIONS(2176), + [anon_sym_mod] = ACTIONS(2176), + [anon_sym_pub] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_static] = ACTIONS(2176), + [anon_sym_struct] = ACTIONS(2176), + [anon_sym_trait] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_union] = ACTIONS(2176), + [anon_sym_unsafe] = ACTIONS(2176), + [anon_sym_use] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_extern] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_move] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [sym_integer_literal] = ACTIONS(2174), + [aux_sym_string_literal_token1] = ACTIONS(2174), + [sym_char_literal] = ACTIONS(2174), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_crate] = ACTIONS(2176), + [sym_metavariable] = ACTIONS(2174), + [sym__raw_string_literal_start] = ACTIONS(2174), + [sym_float_literal] = ACTIONS(2174), + }, + [STATE(588)] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), + [ts_builtin_sym_end] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_u8] = ACTIONS(2180), + [anon_sym_i8] = ACTIONS(2180), + [anon_sym_u16] = ACTIONS(2180), + [anon_sym_i16] = ACTIONS(2180), + [anon_sym_u32] = ACTIONS(2180), + [anon_sym_i32] = ACTIONS(2180), + [anon_sym_u64] = ACTIONS(2180), + [anon_sym_i64] = ACTIONS(2180), + [anon_sym_u128] = ACTIONS(2180), + [anon_sym_i128] = ACTIONS(2180), + [anon_sym_isize] = ACTIONS(2180), + [anon_sym_usize] = ACTIONS(2180), + [anon_sym_f32] = ACTIONS(2180), + [anon_sym_f64] = ACTIONS(2180), + [anon_sym_bool] = ACTIONS(2180), + [anon_sym_str] = ACTIONS(2180), + [anon_sym_char] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2180), + [anon_sym_async] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_const] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_default] = ACTIONS(2180), + [anon_sym_enum] = ACTIONS(2180), + [anon_sym_fn] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_gen] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_impl] = ACTIONS(2180), + [anon_sym_let] = ACTIONS(2180), + [anon_sym_loop] = ACTIONS(2180), + [anon_sym_match] = ACTIONS(2180), + [anon_sym_mod] = ACTIONS(2180), + [anon_sym_pub] = ACTIONS(2180), + [anon_sym_return] = ACTIONS(2180), + [anon_sym_static] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2180), + [anon_sym_trait] = ACTIONS(2180), + [anon_sym_type] = ACTIONS(2180), + [anon_sym_union] = ACTIONS(2180), + [anon_sym_unsafe] = ACTIONS(2180), + [anon_sym_use] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_extern] = ACTIONS(2180), + [anon_sym_yield] = ACTIONS(2180), + [anon_sym_move] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2180), + [sym_integer_literal] = ACTIONS(2178), + [aux_sym_string_literal_token1] = ACTIONS(2178), + [sym_char_literal] = ACTIONS(2178), + [anon_sym_true] = ACTIONS(2180), + [anon_sym_false] = ACTIONS(2180), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2180), + [sym_super] = ACTIONS(2180), + [sym_crate] = ACTIONS(2180), + [sym_metavariable] = ACTIONS(2178), + [sym__raw_string_literal_start] = ACTIONS(2178), + [sym_float_literal] = ACTIONS(2178), + }, + [STATE(589)] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [ts_builtin_sym_end] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_macro_rules_BANG] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2182), + [anon_sym_u8] = ACTIONS(2184), + [anon_sym_i8] = ACTIONS(2184), + [anon_sym_u16] = ACTIONS(2184), + [anon_sym_i16] = ACTIONS(2184), + [anon_sym_u32] = ACTIONS(2184), + [anon_sym_i32] = ACTIONS(2184), + [anon_sym_u64] = ACTIONS(2184), + [anon_sym_i64] = ACTIONS(2184), + [anon_sym_u128] = ACTIONS(2184), + [anon_sym_i128] = ACTIONS(2184), + [anon_sym_isize] = ACTIONS(2184), + [anon_sym_usize] = ACTIONS(2184), + [anon_sym_f32] = ACTIONS(2184), + [anon_sym_f64] = ACTIONS(2184), + [anon_sym_bool] = ACTIONS(2184), + [anon_sym_str] = ACTIONS(2184), + [anon_sym_char] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_DOT_DOT] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2182), [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), [anon_sym_const] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [anon_sym_fn] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_gen] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_impl] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_loop] = ACTIONS(2184), + [anon_sym_match] = ACTIONS(2184), + [anon_sym_mod] = ACTIONS(2184), + [anon_sym_pub] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_struct] = ACTIONS(2184), + [anon_sym_trait] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_union] = ACTIONS(2184), + [anon_sym_unsafe] = ACTIONS(2184), + [anon_sym_use] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_move] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [sym_integer_literal] = ACTIONS(2182), + [aux_sym_string_literal_token1] = ACTIONS(2182), + [sym_char_literal] = ACTIONS(2182), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_crate] = ACTIONS(2184), + [sym_metavariable] = ACTIONS(2182), + [sym__raw_string_literal_start] = ACTIONS(2182), + [sym_float_literal] = ACTIONS(2182), + }, + [STATE(590)] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_macro_rules_BANG] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2186), + [anon_sym_u8] = ACTIONS(2188), + [anon_sym_i8] = ACTIONS(2188), + [anon_sym_u16] = ACTIONS(2188), + [anon_sym_i16] = ACTIONS(2188), + [anon_sym_u32] = ACTIONS(2188), + [anon_sym_i32] = ACTIONS(2188), + [anon_sym_u64] = ACTIONS(2188), + [anon_sym_i64] = ACTIONS(2188), + [anon_sym_u128] = ACTIONS(2188), + [anon_sym_i128] = ACTIONS(2188), + [anon_sym_isize] = ACTIONS(2188), + [anon_sym_usize] = ACTIONS(2188), + [anon_sym_f32] = ACTIONS(2188), + [anon_sym_f64] = ACTIONS(2188), + [anon_sym_bool] = ACTIONS(2188), + [anon_sym_str] = ACTIONS(2188), + [anon_sym_char] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_DOT_DOT] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(2186), + [anon_sym_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(2190), + [anon_sym_fn] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_gen] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_impl] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_loop] = ACTIONS(2188), + [anon_sym_match] = ACTIONS(2188), + [anon_sym_mod] = ACTIONS(2188), + [anon_sym_pub] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_struct] = ACTIONS(2188), + [anon_sym_trait] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_union] = ACTIONS(2188), + [anon_sym_unsafe] = ACTIONS(2188), + [anon_sym_use] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_extern] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_move] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [sym_integer_literal] = ACTIONS(2186), + [aux_sym_string_literal_token1] = ACTIONS(2186), + [sym_char_literal] = ACTIONS(2186), + [anon_sym_true] = ACTIONS(2188), + [anon_sym_false] = ACTIONS(2188), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_crate] = ACTIONS(2188), + [sym_metavariable] = ACTIONS(2186), + [sym__raw_string_literal_start] = ACTIONS(2186), + [sym_float_literal] = ACTIONS(2186), + }, + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_macro_rules_BANG] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_u8] = ACTIONS(2192), + [anon_sym_i8] = ACTIONS(2192), + [anon_sym_u16] = ACTIONS(2192), + [anon_sym_i16] = ACTIONS(2192), + [anon_sym_u32] = ACTIONS(2192), + [anon_sym_i32] = ACTIONS(2192), + [anon_sym_u64] = ACTIONS(2192), + [anon_sym_i64] = ACTIONS(2192), + [anon_sym_u128] = ACTIONS(2192), + [anon_sym_i128] = ACTIONS(2192), + [anon_sym_isize] = ACTIONS(2192), + [anon_sym_usize] = ACTIONS(2192), + [anon_sym_f32] = ACTIONS(2192), + [anon_sym_f64] = ACTIONS(2192), + [anon_sym_bool] = ACTIONS(2192), + [anon_sym_str] = ACTIONS(2192), + [anon_sym_char] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_BANG] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(2190), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_default] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [anon_sym_fn] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), [anon_sym_gen] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_impl] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_loop] = ACTIONS(2192), + [anon_sym_match] = ACTIONS(2192), + [anon_sym_mod] = ACTIONS(2192), + [anon_sym_pub] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_static] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(2192), + [anon_sym_trait] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_union] = ACTIONS(2192), + [anon_sym_unsafe] = ACTIONS(2192), + [anon_sym_use] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_extern] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_move] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [sym_integer_literal] = ACTIONS(2190), + [aux_sym_string_literal_token1] = ACTIONS(2190), + [sym_char_literal] = ACTIONS(2190), + [anon_sym_true] = ACTIONS(2192), + [anon_sym_false] = ACTIONS(2192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_crate] = ACTIONS(2192), + [sym_metavariable] = ACTIONS(2190), + [sym__raw_string_literal_start] = ACTIONS(2190), + [sym_float_literal] = ACTIONS(2190), + }, + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [ts_builtin_sym_end] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_macro_rules_BANG] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_u8] = ACTIONS(2196), + [anon_sym_i8] = ACTIONS(2196), + [anon_sym_u16] = ACTIONS(2196), + [anon_sym_i16] = ACTIONS(2196), + [anon_sym_u32] = ACTIONS(2196), + [anon_sym_i32] = ACTIONS(2196), + [anon_sym_u64] = ACTIONS(2196), + [anon_sym_i64] = ACTIONS(2196), + [anon_sym_u128] = ACTIONS(2196), + [anon_sym_i128] = ACTIONS(2196), + [anon_sym_isize] = ACTIONS(2196), + [anon_sym_usize] = ACTIONS(2196), + [anon_sym_f32] = ACTIONS(2196), + [anon_sym_f64] = ACTIONS(2196), + [anon_sym_bool] = ACTIONS(2196), + [anon_sym_str] = ACTIONS(2196), + [anon_sym_char] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_DOT_DOT] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(2194), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [anon_sym_fn] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_gen] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_impl] = ACTIONS(2196), [anon_sym_let] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2198), - [anon_sym_pub] = ACTIONS(69), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_mod] = ACTIONS(2196), + [anon_sym_pub] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_struct] = ACTIONS(2196), + [anon_sym_trait] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_union] = ACTIONS(2196), + [anon_sym_unsafe] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_move] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [sym_integer_literal] = ACTIONS(2194), + [aux_sym_string_literal_token1] = ACTIONS(2194), + [sym_char_literal] = ACTIONS(2194), + [anon_sym_true] = ACTIONS(2196), + [anon_sym_false] = ACTIONS(2196), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_crate] = ACTIONS(2196), + [sym_metavariable] = ACTIONS(2194), + [sym__raw_string_literal_start] = ACTIONS(2194), + [sym_float_literal] = ACTIONS(2194), + }, + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_macro_rules_BANG] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2198), + [anon_sym_u8] = ACTIONS(2200), + [anon_sym_i8] = ACTIONS(2200), + [anon_sym_u16] = ACTIONS(2200), + [anon_sym_i16] = ACTIONS(2200), + [anon_sym_u32] = ACTIONS(2200), + [anon_sym_i32] = ACTIONS(2200), + [anon_sym_u64] = ACTIONS(2200), + [anon_sym_i64] = ACTIONS(2200), + [anon_sym_u128] = ACTIONS(2200), + [anon_sym_i128] = ACTIONS(2200), + [anon_sym_isize] = ACTIONS(2200), + [anon_sym_usize] = ACTIONS(2200), + [anon_sym_f32] = ACTIONS(2200), + [anon_sym_f64] = ACTIONS(2200), + [anon_sym_bool] = ACTIONS(2200), + [anon_sym_str] = ACTIONS(2200), + [anon_sym_char] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_DOT_DOT] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [anon_sym_fn] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_gen] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_impl] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_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(2202), + [anon_sym_struct] = ACTIONS(2200), + [anon_sym_trait] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_union] = ACTIONS(2200), + [anon_sym_unsafe] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_move] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [sym_integer_literal] = ACTIONS(2198), + [aux_sym_string_literal_token1] = ACTIONS(2198), + [sym_char_literal] = ACTIONS(2198), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_crate] = ACTIONS(2200), + [sym_metavariable] = ACTIONS(2198), + [sym__raw_string_literal_start] = ACTIONS(2198), + [sym_float_literal] = ACTIONS(2198), + }, + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2202), + [anon_sym_macro_rules_BANG] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2202), + [anon_sym_u8] = ACTIONS(2204), + [anon_sym_i8] = ACTIONS(2204), + [anon_sym_u16] = ACTIONS(2204), + [anon_sym_i16] = ACTIONS(2204), + [anon_sym_u32] = ACTIONS(2204), + [anon_sym_i32] = ACTIONS(2204), + [anon_sym_u64] = ACTIONS(2204), + [anon_sym_i64] = ACTIONS(2204), + [anon_sym_u128] = ACTIONS(2204), + [anon_sym_i128] = ACTIONS(2204), + [anon_sym_isize] = ACTIONS(2204), + [anon_sym_usize] = ACTIONS(2204), + [anon_sym_f32] = ACTIONS(2204), + [anon_sym_f64] = ACTIONS(2204), + [anon_sym_bool] = ACTIONS(2204), + [anon_sym_str] = ACTIONS(2204), + [anon_sym_char] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_PIPE] = ACTIONS(2202), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_DOT_DOT] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2202), + [anon_sym_POUND] = ACTIONS(2202), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [anon_sym_fn] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_gen] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_impl] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_loop] = ACTIONS(2204), + [anon_sym_match] = ACTIONS(2204), + [anon_sym_mod] = ACTIONS(2204), + [anon_sym_pub] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_struct] = ACTIONS(2204), [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_union] = ACTIONS(2204), + [anon_sym_unsafe] = ACTIONS(2204), + [anon_sym_use] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_extern] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_move] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [sym_integer_literal] = ACTIONS(2202), + [aux_sym_string_literal_token1] = ACTIONS(2202), + [sym_char_literal] = ACTIONS(2202), + [anon_sym_true] = ACTIONS(2204), + [anon_sym_false] = ACTIONS(2204), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_crate] = ACTIONS(2204), + [sym_metavariable] = ACTIONS(2202), + [sym__raw_string_literal_start] = ACTIONS(2202), + [sym_float_literal] = ACTIONS(2202), + }, + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_macro_rules_BANG] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_u8] = ACTIONS(2208), + [anon_sym_i8] = ACTIONS(2208), + [anon_sym_u16] = ACTIONS(2208), + [anon_sym_i16] = ACTIONS(2208), + [anon_sym_u32] = ACTIONS(2208), + [anon_sym_i32] = ACTIONS(2208), + [anon_sym_u64] = ACTIONS(2208), + [anon_sym_i64] = ACTIONS(2208), + [anon_sym_u128] = ACTIONS(2208), + [anon_sym_i128] = ACTIONS(2208), + [anon_sym_isize] = ACTIONS(2208), + [anon_sym_usize] = ACTIONS(2208), + [anon_sym_f32] = ACTIONS(2208), + [anon_sym_f64] = ACTIONS(2208), + [anon_sym_bool] = ACTIONS(2208), + [anon_sym_str] = ACTIONS(2208), + [anon_sym_char] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_DOT_DOT] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2206), + [anon_sym_POUND] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [anon_sym_fn] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_gen] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_impl] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_loop] = ACTIONS(2208), + [anon_sym_match] = ACTIONS(2208), + [anon_sym_mod] = ACTIONS(2208), + [anon_sym_pub] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_struct] = ACTIONS(2208), + [anon_sym_trait] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2210), + [anon_sym_unsafe] = ACTIONS(2208), + [anon_sym_use] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_extern] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_move] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [sym_integer_literal] = ACTIONS(2206), + [aux_sym_string_literal_token1] = ACTIONS(2206), + [sym_char_literal] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_crate] = ACTIONS(2208), + [sym_metavariable] = ACTIONS(2206), + [sym__raw_string_literal_start] = ACTIONS(2206), + [sym_float_literal] = ACTIONS(2206), + }, + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_macro_rules_BANG] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2210), + [anon_sym_u8] = ACTIONS(2212), + [anon_sym_i8] = ACTIONS(2212), + [anon_sym_u16] = ACTIONS(2212), + [anon_sym_i16] = ACTIONS(2212), + [anon_sym_u32] = ACTIONS(2212), + [anon_sym_i32] = ACTIONS(2212), + [anon_sym_u64] = ACTIONS(2212), + [anon_sym_i64] = ACTIONS(2212), + [anon_sym_u128] = ACTIONS(2212), + [anon_sym_i128] = ACTIONS(2212), + [anon_sym_isize] = ACTIONS(2212), + [anon_sym_usize] = ACTIONS(2212), + [anon_sym_f32] = ACTIONS(2212), + [anon_sym_f64] = ACTIONS(2212), + [anon_sym_bool] = ACTIONS(2212), + [anon_sym_str] = ACTIONS(2212), + [anon_sym_char] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_BANG] = ACTIONS(2210), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_DOT_DOT] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2210), + [anon_sym_POUND] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_fn] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_gen] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_impl] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_loop] = ACTIONS(2212), + [anon_sym_match] = ACTIONS(2212), + [anon_sym_mod] = ACTIONS(2212), + [anon_sym_pub] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_trait] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_unsafe] = ACTIONS(2212), [anon_sym_use] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_move] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(2210), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(2212), + [anon_sym_false] = ACTIONS(2212), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_crate] = ACTIONS(2212), + [sym_metavariable] = ACTIONS(2210), + [sym__raw_string_literal_start] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), + }, + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_macro_rules_BANG] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_u8] = ACTIONS(2216), + [anon_sym_i8] = ACTIONS(2216), + [anon_sym_u16] = ACTIONS(2216), + [anon_sym_i16] = ACTIONS(2216), + [anon_sym_u32] = ACTIONS(2216), + [anon_sym_i32] = ACTIONS(2216), + [anon_sym_u64] = ACTIONS(2216), + [anon_sym_i64] = ACTIONS(2216), + [anon_sym_u128] = ACTIONS(2216), + [anon_sym_i128] = ACTIONS(2216), + [anon_sym_isize] = ACTIONS(2216), + [anon_sym_usize] = ACTIONS(2216), + [anon_sym_f32] = ACTIONS(2216), + [anon_sym_f64] = ACTIONS(2216), + [anon_sym_bool] = ACTIONS(2216), + [anon_sym_str] = ACTIONS(2216), + [anon_sym_char] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2216), + [anon_sym_async] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2216), + [anon_sym_const] = ACTIONS(2216), + [anon_sym_continue] = ACTIONS(2216), + [anon_sym_default] = ACTIONS(2216), + [anon_sym_enum] = ACTIONS(2216), + [anon_sym_fn] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_gen] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2216), + [anon_sym_impl] = ACTIONS(2216), + [anon_sym_let] = ACTIONS(2216), + [anon_sym_loop] = ACTIONS(2216), + [anon_sym_match] = ACTIONS(2216), + [anon_sym_mod] = ACTIONS(2216), + [anon_sym_pub] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_static] = ACTIONS(2216), + [anon_sym_struct] = ACTIONS(2216), + [anon_sym_trait] = ACTIONS(2216), + [anon_sym_type] = ACTIONS(2216), + [anon_sym_union] = ACTIONS(2216), + [anon_sym_unsafe] = ACTIONS(2216), + [anon_sym_use] = ACTIONS(2216), + [anon_sym_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(2218), - [sym_metavariable] = ACTIONS(2220), + [sym_crate] = ACTIONS(2216), + [sym_metavariable] = ACTIONS(2214), + [sym__raw_string_literal_start] = ACTIONS(2214), + [sym_float_literal] = ACTIONS(2214), }, - [STATE(569)] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_macro_rules_BANG] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2218), + [anon_sym_u8] = ACTIONS(2220), + [anon_sym_i8] = ACTIONS(2220), + [anon_sym_u16] = ACTIONS(2220), + [anon_sym_i16] = ACTIONS(2220), + [anon_sym_u32] = ACTIONS(2220), + [anon_sym_i32] = ACTIONS(2220), + [anon_sym_u64] = ACTIONS(2220), + [anon_sym_i64] = ACTIONS(2220), + [anon_sym_u128] = ACTIONS(2220), + [anon_sym_i128] = ACTIONS(2220), + [anon_sym_isize] = ACTIONS(2220), + [anon_sym_usize] = ACTIONS(2220), + [anon_sym_f32] = ACTIONS(2220), + [anon_sym_f64] = ACTIONS(2220), + [anon_sym_bool] = ACTIONS(2220), + [anon_sym_str] = ACTIONS(2220), + [anon_sym_char] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(2218), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_LT] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(2218), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_async] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_default] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_gen] = ACTIONS(2220), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_impl] = ACTIONS(2220), + [anon_sym_let] = ACTIONS(2220), + [anon_sym_loop] = ACTIONS(2220), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_mod] = ACTIONS(2220), + [anon_sym_pub] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_trait] = ACTIONS(2220), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_use] = ACTIONS(2220), + [anon_sym_while] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym_yield] = ACTIONS(2220), + [anon_sym_move] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2220), + [sym_integer_literal] = ACTIONS(2218), + [aux_sym_string_literal_token1] = ACTIONS(2218), + [sym_char_literal] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_crate] = ACTIONS(2220), + [sym_metavariable] = ACTIONS(2218), + [sym__raw_string_literal_start] = ACTIONS(2218), + [sym_float_literal] = ACTIONS(2218), + }, + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), [ts_builtin_sym_end] = ACTIONS(2222), [sym_identifier] = ACTIONS(2224), [anon_sym_SEMI] = ACTIONS(2222), @@ -77260,9 +79805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2222), [sym_float_literal] = ACTIONS(2222), }, - [STATE(570)] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2226), [sym_identifier] = ACTIONS(2228), [anon_sym_SEMI] = ACTIONS(2226), @@ -77341,9 +79886,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2226), [sym_float_literal] = ACTIONS(2226), }, - [STATE(571)] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), [anon_sym_SEMI] = ACTIONS(2230), @@ -77422,9 +79967,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2230), [sym_float_literal] = ACTIONS(2230), }, - [STATE(572)] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_SEMI] = ACTIONS(2234), @@ -77503,9 +80048,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2234), [sym_float_literal] = ACTIONS(2234), }, - [STATE(573)] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_SEMI] = ACTIONS(2238), @@ -77584,9 +80129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2238), [sym_float_literal] = ACTIONS(2238), }, - [STATE(574)] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [STATE(604)] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2242), [sym_identifier] = ACTIONS(2244), [anon_sym_SEMI] = ACTIONS(2242), @@ -77665,9 +80210,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2242), [sym_float_literal] = ACTIONS(2242), }, - [STATE(575)] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [STATE(605)] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2246), [sym_identifier] = ACTIONS(2248), [anon_sym_SEMI] = ACTIONS(2246), @@ -77746,9 +80291,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2246), [sym_float_literal] = ACTIONS(2246), }, - [STATE(576)] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [STATE(606)] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2250), [sym_identifier] = ACTIONS(2252), [anon_sym_SEMI] = ACTIONS(2250), @@ -77827,9 +80372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2250), [sym_float_literal] = ACTIONS(2250), }, - [STATE(577)] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [STATE(607)] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2254), [sym_identifier] = ACTIONS(2256), [anon_sym_SEMI] = ACTIONS(2254), @@ -77908,9 +80453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2254), [sym_float_literal] = ACTIONS(2254), }, - [STATE(578)] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [STATE(608)] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2258), [sym_identifier] = ACTIONS(2260), [anon_sym_SEMI] = ACTIONS(2258), @@ -77989,9 +80534,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2258), [sym_float_literal] = ACTIONS(2258), }, - [STATE(579)] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [STATE(609)] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2262), [sym_identifier] = ACTIONS(2264), [anon_sym_SEMI] = ACTIONS(2262), @@ -78070,9 +80615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2262), [sym_float_literal] = ACTIONS(2262), }, - [STATE(580)] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [STATE(610)] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2266), [sym_identifier] = ACTIONS(2268), [anon_sym_SEMI] = ACTIONS(2266), @@ -78151,9 +80696,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2266), [sym_float_literal] = ACTIONS(2266), }, - [STATE(581)] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [STATE(611)] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2270), [sym_identifier] = ACTIONS(2272), [anon_sym_SEMI] = ACTIONS(2270), @@ -78232,9 +80777,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2270), [sym_float_literal] = ACTIONS(2270), }, - [STATE(582)] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [STATE(612)] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2274), [sym_identifier] = ACTIONS(2276), [anon_sym_SEMI] = ACTIONS(2274), @@ -78313,9 +80858,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2274), [sym_float_literal] = ACTIONS(2274), }, - [STATE(583)] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [STATE(613)] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), [ts_builtin_sym_end] = ACTIONS(2278), [sym_identifier] = ACTIONS(2280), [anon_sym_SEMI] = ACTIONS(2278), @@ -78394,9 +80939,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2278), [sym_float_literal] = ACTIONS(2278), }, - [STATE(584)] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), + [STATE(614)] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), [ts_builtin_sym_end] = ACTIONS(2282), [sym_identifier] = ACTIONS(2284), [anon_sym_SEMI] = ACTIONS(2282), @@ -78475,9 +81020,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2282), [sym_float_literal] = ACTIONS(2282), }, - [STATE(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [STATE(615)] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), [ts_builtin_sym_end] = ACTIONS(2286), [sym_identifier] = ACTIONS(2288), [anon_sym_SEMI] = ACTIONS(2286), @@ -78514,4263 +81059,2157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), - [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(587)] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_identifier] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_macro_rules_BANG] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_u8] = ACTIONS(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_async] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_gen] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_impl] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_pub] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_trait] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_unsafe] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1475), - [anon_sym_move] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1473), - [aux_sym_string_literal_token1] = ACTIONS(1473), - [sym_char_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), - }, - [STATE(588)] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), - [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(589)] = { - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), - [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(590)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(3272), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2829), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(591)] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), - [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), - }, - [STATE(592)] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_macro_rules_BANG] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_gen] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_impl] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_pub] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_trait] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_unsafe] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_move] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym__raw_string_literal_start] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), - }, - [STATE(593)] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), - [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), - }, - [STATE(594)] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), - [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), - }, - [STATE(595)] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), - [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), - }, - [STATE(596)] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), - [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), - }, - [STATE(597)] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), - [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), - }, - [STATE(598)] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), - [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), - }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [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), - }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), - [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), - }, - [STATE(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), - [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), - }, - [STATE(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), - [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), - }, - [STATE(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), - [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), - }, - [STATE(604)] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), - [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), - }, - [STATE(605)] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), - [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), - }, - [STATE(606)] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), - [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), - }, - [STATE(607)] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), - [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), - }, - [STATE(608)] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_identifier] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_macro_rules_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u128] = ACTIONS(1385), - [anon_sym_i128] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_async] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_gen] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_impl] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_pub] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_trait] = ACTIONS(1385), - [anon_sym_type] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_move] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1383), - [aux_sym_string_literal_token1] = ACTIONS(1383), - [sym_char_literal] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym__raw_string_literal_start] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), - }, - [STATE(609)] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), - [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), - }, - [STATE(610)] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), - [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), - }, - [STATE(611)] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), - [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), - }, - [STATE(612)] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_macro_rules_BANG] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_async] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_gen] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_pub] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_trait] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_unsafe] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_move] = ACTIONS(1405), - [anon_sym_try] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym__raw_string_literal_start] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), - }, - [STATE(613)] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), - [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(614)] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), - [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(615)] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_macro_rules_BANG] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_u8] = ACTIONS(1389), - [anon_sym_i8] = ACTIONS(1389), - [anon_sym_u16] = ACTIONS(1389), - [anon_sym_i16] = ACTIONS(1389), - [anon_sym_u32] = ACTIONS(1389), - [anon_sym_i32] = ACTIONS(1389), - [anon_sym_u64] = ACTIONS(1389), - [anon_sym_i64] = ACTIONS(1389), - [anon_sym_u128] = ACTIONS(1389), - [anon_sym_i128] = ACTIONS(1389), - [anon_sym_isize] = ACTIONS(1389), - [anon_sym_usize] = ACTIONS(1389), - [anon_sym_f32] = ACTIONS(1389), - [anon_sym_f64] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_str] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_impl] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_pub] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_trait] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_unsafe] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_move] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1387), - [aux_sym_string_literal_token1] = ACTIONS(1387), - [sym_char_literal] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), + [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(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym__raw_string_literal_start] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), + [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(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_macro_rules_BANG] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_u8] = ACTIONS(2390), - [anon_sym_i8] = ACTIONS(2390), - [anon_sym_u16] = ACTIONS(2390), - [anon_sym_i16] = ACTIONS(2390), - [anon_sym_u32] = ACTIONS(2390), - [anon_sym_i32] = ACTIONS(2390), - [anon_sym_u64] = ACTIONS(2390), - [anon_sym_i64] = ACTIONS(2390), - [anon_sym_u128] = ACTIONS(2390), - [anon_sym_i128] = ACTIONS(2390), - [anon_sym_isize] = ACTIONS(2390), - [anon_sym_usize] = ACTIONS(2390), - [anon_sym_f32] = ACTIONS(2390), - [anon_sym_f64] = ACTIONS(2390), - [anon_sym_bool] = ACTIONS(2390), - [anon_sym_str] = ACTIONS(2390), - [anon_sym_char] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_DOT_DOT] = ACTIONS(2388), - [anon_sym_COLON_COLON] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), - [anon_sym_fn] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_gen] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_impl] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_mod] = ACTIONS(2390), - [anon_sym_pub] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2390), - [anon_sym_trait] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_union] = ACTIONS(2390), - [anon_sym_unsafe] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_move] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [sym_integer_literal] = ACTIONS(2388), - [aux_sym_string_literal_token1] = ACTIONS(2388), - [sym_char_literal] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_crate] = ACTIONS(2390), - [sym_metavariable] = ACTIONS(2388), - [sym__raw_string_literal_start] = ACTIONS(2388), - [sym_float_literal] = ACTIONS(2388), + [ts_builtin_sym_end] = ACTIONS(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(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2392), - [sym_identifier] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_macro_rules_BANG] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_u8] = ACTIONS(2394), - [anon_sym_i8] = ACTIONS(2394), - [anon_sym_u16] = ACTIONS(2394), - [anon_sym_i16] = ACTIONS(2394), - [anon_sym_u32] = ACTIONS(2394), - [anon_sym_i32] = ACTIONS(2394), - [anon_sym_u64] = ACTIONS(2394), - [anon_sym_i64] = ACTIONS(2394), - [anon_sym_u128] = ACTIONS(2394), - [anon_sym_i128] = ACTIONS(2394), - [anon_sym_isize] = ACTIONS(2394), - [anon_sym_usize] = ACTIONS(2394), - [anon_sym_f32] = ACTIONS(2394), - [anon_sym_f64] = ACTIONS(2394), - [anon_sym_bool] = ACTIONS(2394), - [anon_sym_str] = ACTIONS(2394), - [anon_sym_char] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_gen] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_impl] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_mod] = ACTIONS(2394), - [anon_sym_pub] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_trait] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_unsafe] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_move] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [sym_integer_literal] = ACTIONS(2392), - [aux_sym_string_literal_token1] = ACTIONS(2392), - [sym_char_literal] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_crate] = ACTIONS(2394), - [sym_metavariable] = ACTIONS(2392), - [sym__raw_string_literal_start] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(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(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_macro_rules_BANG] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_u8] = ACTIONS(2398), - [anon_sym_i8] = ACTIONS(2398), - [anon_sym_u16] = ACTIONS(2398), - [anon_sym_i16] = ACTIONS(2398), - [anon_sym_u32] = ACTIONS(2398), - [anon_sym_i32] = ACTIONS(2398), - [anon_sym_u64] = ACTIONS(2398), - [anon_sym_i64] = ACTIONS(2398), - [anon_sym_u128] = ACTIONS(2398), - [anon_sym_i128] = ACTIONS(2398), - [anon_sym_isize] = ACTIONS(2398), - [anon_sym_usize] = ACTIONS(2398), - [anon_sym_f32] = ACTIONS(2398), - [anon_sym_f64] = ACTIONS(2398), - [anon_sym_bool] = ACTIONS(2398), - [anon_sym_str] = ACTIONS(2398), - [anon_sym_char] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_DOT_DOT] = ACTIONS(2396), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2396), - [anon_sym_SQUOTE] = ACTIONS(2398), - [anon_sym_async] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_gen] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_mod] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_static] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_trait] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_yield] = ACTIONS(2398), - [anon_sym_move] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [sym_integer_literal] = ACTIONS(2396), - [aux_sym_string_literal_token1] = ACTIONS(2396), - [sym_char_literal] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2398), - [sym_super] = ACTIONS(2398), - [sym_crate] = ACTIONS(2398), - [sym_metavariable] = ACTIONS(2396), - [sym__raw_string_literal_start] = ACTIONS(2396), - [sym_float_literal] = ACTIONS(2396), + [ts_builtin_sym_end] = ACTIONS(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(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_macro_rules_BANG] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_u8] = ACTIONS(2402), - [anon_sym_i8] = ACTIONS(2402), - [anon_sym_u16] = ACTIONS(2402), - [anon_sym_i16] = ACTIONS(2402), - [anon_sym_u32] = ACTIONS(2402), - [anon_sym_i32] = ACTIONS(2402), - [anon_sym_u64] = ACTIONS(2402), - [anon_sym_i64] = ACTIONS(2402), - [anon_sym_u128] = ACTIONS(2402), - [anon_sym_i128] = ACTIONS(2402), - [anon_sym_isize] = ACTIONS(2402), - [anon_sym_usize] = ACTIONS(2402), - [anon_sym_f32] = ACTIONS(2402), - [anon_sym_f64] = ACTIONS(2402), - [anon_sym_bool] = ACTIONS(2402), - [anon_sym_str] = ACTIONS(2402), - [anon_sym_char] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_DOT_DOT] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_fn] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_gen] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_impl] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_mod] = ACTIONS(2402), - [anon_sym_pub] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_trait] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [anon_sym_unsafe] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_move] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2400), - [aux_sym_string_literal_token1] = ACTIONS(2400), - [sym_char_literal] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), + [ts_builtin_sym_end] = ACTIONS(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(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_macro_rules_BANG] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2406), - [anon_sym_i8] = ACTIONS(2406), - [anon_sym_u16] = ACTIONS(2406), - [anon_sym_i16] = ACTIONS(2406), - [anon_sym_u32] = ACTIONS(2406), - [anon_sym_i32] = ACTIONS(2406), - [anon_sym_u64] = ACTIONS(2406), - [anon_sym_i64] = ACTIONS(2406), - [anon_sym_u128] = ACTIONS(2406), - [anon_sym_i128] = ACTIONS(2406), - [anon_sym_isize] = ACTIONS(2406), - [anon_sym_usize] = ACTIONS(2406), - [anon_sym_f32] = ACTIONS(2406), - [anon_sym_f64] = ACTIONS(2406), - [anon_sym_bool] = ACTIONS(2406), - [anon_sym_str] = ACTIONS(2406), - [anon_sym_char] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(2404), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_default] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_gen] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_impl] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_mod] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_trait] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_yield] = ACTIONS(2406), - [anon_sym_move] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [sym_integer_literal] = ACTIONS(2404), - [aux_sym_string_literal_token1] = ACTIONS(2404), - [sym_char_literal] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2406), - [sym_super] = ACTIONS(2406), - [sym_crate] = ACTIONS(2406), - [sym_metavariable] = ACTIONS(2404), - [sym__raw_string_literal_start] = ACTIONS(2404), - [sym_float_literal] = ACTIONS(2404), + [ts_builtin_sym_end] = ACTIONS(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(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_macro_rules_BANG] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_u8] = ACTIONS(2410), - [anon_sym_i8] = ACTIONS(2410), - [anon_sym_u16] = ACTIONS(2410), - [anon_sym_i16] = ACTIONS(2410), - [anon_sym_u32] = ACTIONS(2410), - [anon_sym_i32] = ACTIONS(2410), - [anon_sym_u64] = ACTIONS(2410), - [anon_sym_i64] = ACTIONS(2410), - [anon_sym_u128] = ACTIONS(2410), - [anon_sym_i128] = ACTIONS(2410), - [anon_sym_isize] = ACTIONS(2410), - [anon_sym_usize] = ACTIONS(2410), - [anon_sym_f32] = ACTIONS(2410), - [anon_sym_f64] = ACTIONS(2410), - [anon_sym_bool] = ACTIONS(2410), - [anon_sym_str] = ACTIONS(2410), - [anon_sym_char] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_DOT_DOT] = ACTIONS(2408), - [anon_sym_COLON_COLON] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(2408), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [anon_sym_fn] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_gen] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_impl] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_mod] = ACTIONS(2410), - [anon_sym_pub] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2410), - [anon_sym_trait] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_union] = ACTIONS(2410), - [anon_sym_unsafe] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_move] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [sym_integer_literal] = ACTIONS(2408), - [aux_sym_string_literal_token1] = ACTIONS(2408), - [sym_char_literal] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_crate] = ACTIONS(2410), - [sym_metavariable] = ACTIONS(2408), - [sym__raw_string_literal_start] = ACTIONS(2408), - [sym_float_literal] = ACTIONS(2408), + [ts_builtin_sym_end] = ACTIONS(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(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_macro_rules_BANG] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_STAR] = ACTIONS(2412), - [anon_sym_u8] = ACTIONS(2414), - [anon_sym_i8] = ACTIONS(2414), - [anon_sym_u16] = ACTIONS(2414), - [anon_sym_i16] = ACTIONS(2414), - [anon_sym_u32] = ACTIONS(2414), - [anon_sym_i32] = ACTIONS(2414), - [anon_sym_u64] = ACTIONS(2414), - [anon_sym_i64] = ACTIONS(2414), - [anon_sym_u128] = ACTIONS(2414), - [anon_sym_i128] = ACTIONS(2414), - [anon_sym_isize] = ACTIONS(2414), - [anon_sym_usize] = ACTIONS(2414), - [anon_sym_f32] = ACTIONS(2414), - [anon_sym_f64] = ACTIONS(2414), - [anon_sym_bool] = ACTIONS(2414), - [anon_sym_str] = ACTIONS(2414), - [anon_sym_char] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [anon_sym_COLON_COLON] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(2412), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_fn] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_gen] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_impl] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_mod] = ACTIONS(2414), - [anon_sym_pub] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_trait] = ACTIONS(2414), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_unsafe] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_yield] = ACTIONS(2414), - [anon_sym_move] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [sym_integer_literal] = ACTIONS(2412), - [aux_sym_string_literal_token1] = ACTIONS(2412), - [sym_char_literal] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2414), - [sym_super] = ACTIONS(2414), - [sym_crate] = ACTIONS(2414), - [sym_metavariable] = ACTIONS(2412), - [sym__raw_string_literal_start] = ACTIONS(2412), - [sym_float_literal] = ACTIONS(2412), + [ts_builtin_sym_end] = ACTIONS(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(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2416), - [sym_identifier] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_macro_rules_BANG] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_u8] = ACTIONS(2418), - [anon_sym_i8] = ACTIONS(2418), - [anon_sym_u16] = ACTIONS(2418), - [anon_sym_i16] = ACTIONS(2418), - [anon_sym_u32] = ACTIONS(2418), - [anon_sym_i32] = ACTIONS(2418), - [anon_sym_u64] = ACTIONS(2418), - [anon_sym_i64] = ACTIONS(2418), - [anon_sym_u128] = ACTIONS(2418), - [anon_sym_i128] = ACTIONS(2418), - [anon_sym_isize] = ACTIONS(2418), - [anon_sym_usize] = ACTIONS(2418), - [anon_sym_f32] = ACTIONS(2418), - [anon_sym_f64] = ACTIONS(2418), - [anon_sym_bool] = ACTIONS(2418), - [anon_sym_str] = ACTIONS(2418), - [anon_sym_char] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_DOT_DOT] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2418), - [anon_sym_fn] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_gen] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_impl] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_mod] = ACTIONS(2418), - [anon_sym_pub] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_struct] = ACTIONS(2418), - [anon_sym_trait] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2418), - [anon_sym_union] = ACTIONS(2418), - [anon_sym_unsafe] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_yield] = ACTIONS(2418), - [anon_sym_move] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [sym_integer_literal] = ACTIONS(2416), - [aux_sym_string_literal_token1] = ACTIONS(2416), - [sym_char_literal] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2418), - [sym_super] = ACTIONS(2418), - [sym_crate] = ACTIONS(2418), - [sym_metavariable] = ACTIONS(2416), - [sym__raw_string_literal_start] = ACTIONS(2416), - [sym_float_literal] = ACTIONS(2416), + [ts_builtin_sym_end] = ACTIONS(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(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_macro_rules_BANG] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2420), - [anon_sym_u8] = ACTIONS(2422), - [anon_sym_i8] = ACTIONS(2422), - [anon_sym_u16] = ACTIONS(2422), - [anon_sym_i16] = ACTIONS(2422), - [anon_sym_u32] = ACTIONS(2422), - [anon_sym_i32] = ACTIONS(2422), - [anon_sym_u64] = ACTIONS(2422), - [anon_sym_i64] = ACTIONS(2422), - [anon_sym_u128] = ACTIONS(2422), - [anon_sym_i128] = ACTIONS(2422), - [anon_sym_isize] = ACTIONS(2422), - [anon_sym_usize] = ACTIONS(2422), - [anon_sym_f32] = ACTIONS(2422), - [anon_sym_f64] = ACTIONS(2422), - [anon_sym_bool] = ACTIONS(2422), - [anon_sym_str] = ACTIONS(2422), - [anon_sym_char] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_DOT_DOT] = ACTIONS(2420), - [anon_sym_COLON_COLON] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2422), - [anon_sym_async] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_fn] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_gen] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_impl] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_mod] = ACTIONS(2422), - [anon_sym_pub] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_trait] = ACTIONS(2422), - [anon_sym_type] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_unsafe] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_yield] = ACTIONS(2422), - [anon_sym_move] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [sym_integer_literal] = ACTIONS(2420), - [aux_sym_string_literal_token1] = ACTIONS(2420), - [sym_char_literal] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2422), - [sym_super] = ACTIONS(2422), - [sym_crate] = ACTIONS(2422), - [sym_metavariable] = ACTIONS(2420), - [sym__raw_string_literal_start] = ACTIONS(2420), - [sym_float_literal] = ACTIONS(2420), + [ts_builtin_sym_end] = ACTIONS(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(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_macro_rules_BANG] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_u8] = ACTIONS(2426), - [anon_sym_i8] = ACTIONS(2426), - [anon_sym_u16] = ACTIONS(2426), - [anon_sym_i16] = ACTIONS(2426), - [anon_sym_u32] = ACTIONS(2426), - [anon_sym_i32] = ACTIONS(2426), - [anon_sym_u64] = ACTIONS(2426), - [anon_sym_i64] = ACTIONS(2426), - [anon_sym_u128] = ACTIONS(2426), - [anon_sym_i128] = ACTIONS(2426), - [anon_sym_isize] = ACTIONS(2426), - [anon_sym_usize] = ACTIONS(2426), - [anon_sym_f32] = ACTIONS(2426), - [anon_sym_f64] = ACTIONS(2426), - [anon_sym_bool] = ACTIONS(2426), - [anon_sym_str] = ACTIONS(2426), - [anon_sym_char] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2424), - [anon_sym_COLON_COLON] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [anon_sym_fn] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_gen] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_impl] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_mod] = ACTIONS(2426), - [anon_sym_pub] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2426), - [anon_sym_trait] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_union] = ACTIONS(2426), - [anon_sym_unsafe] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_move] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [sym_integer_literal] = ACTIONS(2424), - [aux_sym_string_literal_token1] = ACTIONS(2424), - [sym_char_literal] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_crate] = ACTIONS(2426), - [sym_metavariable] = ACTIONS(2424), - [sym__raw_string_literal_start] = ACTIONS(2424), - [sym_float_literal] = ACTIONS(2424), + [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(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_macro_rules_BANG] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(2430), - [anon_sym_i8] = ACTIONS(2430), - [anon_sym_u16] = ACTIONS(2430), - [anon_sym_i16] = ACTIONS(2430), - [anon_sym_u32] = ACTIONS(2430), - [anon_sym_i32] = ACTIONS(2430), - [anon_sym_u64] = ACTIONS(2430), - [anon_sym_i64] = ACTIONS(2430), - [anon_sym_u128] = ACTIONS(2430), - [anon_sym_i128] = ACTIONS(2430), - [anon_sym_isize] = ACTIONS(2430), - [anon_sym_usize] = ACTIONS(2430), - [anon_sym_f32] = ACTIONS(2430), - [anon_sym_f64] = ACTIONS(2430), - [anon_sym_bool] = ACTIONS(2430), - [anon_sym_str] = ACTIONS(2430), - [anon_sym_char] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [anon_sym_COLON_COLON] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2430), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_default] = ACTIONS(2430), - [anon_sym_enum] = ACTIONS(2430), - [anon_sym_fn] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_gen] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_mod] = ACTIONS(2430), - [anon_sym_pub] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(2430), - [anon_sym_trait] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_unsafe] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [sym_integer_literal] = ACTIONS(2428), - [aux_sym_string_literal_token1] = ACTIONS(2428), - [sym_char_literal] = ACTIONS(2428), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2430), - [sym_super] = ACTIONS(2430), - [sym_crate] = ACTIONS(2430), - [sym_metavariable] = ACTIONS(2428), - [sym__raw_string_literal_start] = ACTIONS(2428), - [sym_float_literal] = ACTIONS(2428), + [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(627)] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_macro_rules_BANG] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2432), - [anon_sym_u8] = ACTIONS(2434), - [anon_sym_i8] = ACTIONS(2434), - [anon_sym_u16] = ACTIONS(2434), - [anon_sym_i16] = ACTIONS(2434), - [anon_sym_u32] = ACTIONS(2434), - [anon_sym_i32] = ACTIONS(2434), - [anon_sym_u64] = ACTIONS(2434), - [anon_sym_i64] = ACTIONS(2434), - [anon_sym_u128] = ACTIONS(2434), - [anon_sym_i128] = ACTIONS(2434), - [anon_sym_isize] = ACTIONS(2434), - [anon_sym_usize] = ACTIONS(2434), - [anon_sym_f32] = ACTIONS(2434), - [anon_sym_f64] = ACTIONS(2434), - [anon_sym_bool] = ACTIONS(2434), - [anon_sym_str] = ACTIONS(2434), - [anon_sym_char] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_DOT_DOT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [anon_sym_fn] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_gen] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_impl] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_mod] = ACTIONS(2434), - [anon_sym_pub] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_struct] = ACTIONS(2434), - [anon_sym_trait] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_union] = ACTIONS(2434), - [anon_sym_unsafe] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_move] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [sym_integer_literal] = ACTIONS(2432), - [aux_sym_string_literal_token1] = ACTIONS(2432), - [sym_char_literal] = ACTIONS(2432), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_crate] = ACTIONS(2434), - [sym_metavariable] = ACTIONS(2432), - [sym__raw_string_literal_start] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(2432), + [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(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2436), - [sym_identifier] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_macro_rules_BANG] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_u8] = ACTIONS(2438), - [anon_sym_i8] = ACTIONS(2438), - [anon_sym_u16] = ACTIONS(2438), - [anon_sym_i16] = ACTIONS(2438), - [anon_sym_u32] = ACTIONS(2438), - [anon_sym_i32] = ACTIONS(2438), - [anon_sym_u64] = ACTIONS(2438), - [anon_sym_i64] = ACTIONS(2438), - [anon_sym_u128] = ACTIONS(2438), - [anon_sym_i128] = ACTIONS(2438), - [anon_sym_isize] = ACTIONS(2438), - [anon_sym_usize] = ACTIONS(2438), - [anon_sym_f32] = ACTIONS(2438), - [anon_sym_f64] = ACTIONS(2438), - [anon_sym_bool] = ACTIONS(2438), - [anon_sym_str] = ACTIONS(2438), - [anon_sym_char] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_AMP] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(2436), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [anon_sym_COLON_COLON] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [anon_sym_fn] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_gen] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_impl] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_loop] = ACTIONS(2438), - [anon_sym_match] = ACTIONS(2438), - [anon_sym_mod] = ACTIONS(2438), - [anon_sym_pub] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_struct] = ACTIONS(2438), - [anon_sym_trait] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_union] = ACTIONS(2438), - [anon_sym_unsafe] = ACTIONS(2438), - [anon_sym_use] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_extern] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_move] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [sym_integer_literal] = ACTIONS(2436), - [aux_sym_string_literal_token1] = ACTIONS(2436), - [sym_char_literal] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_crate] = ACTIONS(2438), - [sym_metavariable] = ACTIONS(2436), - [sym__raw_string_literal_start] = ACTIONS(2436), - [sym_float_literal] = ACTIONS(2436), + [ts_builtin_sym_end] = ACTIONS(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(629)] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2440), - [sym_identifier] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_macro_rules_BANG] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_u8] = ACTIONS(2442), - [anon_sym_i8] = ACTIONS(2442), - [anon_sym_u16] = ACTIONS(2442), - [anon_sym_i16] = ACTIONS(2442), - [anon_sym_u32] = ACTIONS(2442), - [anon_sym_i32] = ACTIONS(2442), - [anon_sym_u64] = ACTIONS(2442), - [anon_sym_i64] = ACTIONS(2442), - [anon_sym_u128] = ACTIONS(2442), - [anon_sym_i128] = ACTIONS(2442), - [anon_sym_isize] = ACTIONS(2442), - [anon_sym_usize] = ACTIONS(2442), - [anon_sym_f32] = ACTIONS(2442), - [anon_sym_f64] = ACTIONS(2442), - [anon_sym_bool] = ACTIONS(2442), - [anon_sym_str] = ACTIONS(2442), - [anon_sym_char] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_DOT_DOT] = ACTIONS(2440), - [anon_sym_COLON_COLON] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_gen] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_impl] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_mod] = ACTIONS(2442), - [anon_sym_pub] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2442), - [anon_sym_trait] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_union] = ACTIONS(2442), - [anon_sym_unsafe] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_move] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [sym_integer_literal] = ACTIONS(2440), - [aux_sym_string_literal_token1] = ACTIONS(2440), - [sym_char_literal] = ACTIONS(2440), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_crate] = ACTIONS(2442), - [sym_metavariable] = ACTIONS(2440), - [sym__raw_string_literal_start] = ACTIONS(2440), - [sym_float_literal] = ACTIONS(2440), + [ts_builtin_sym_end] = ACTIONS(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(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2444), - [sym_identifier] = ACTIONS(2446), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_macro_rules_BANG] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2444), - [anon_sym_u8] = ACTIONS(2446), - [anon_sym_i8] = ACTIONS(2446), - [anon_sym_u16] = ACTIONS(2446), - [anon_sym_i16] = ACTIONS(2446), - [anon_sym_u32] = ACTIONS(2446), - [anon_sym_i32] = ACTIONS(2446), - [anon_sym_u64] = ACTIONS(2446), - [anon_sym_i64] = ACTIONS(2446), - [anon_sym_u128] = ACTIONS(2446), - [anon_sym_i128] = ACTIONS(2446), - [anon_sym_isize] = ACTIONS(2446), - [anon_sym_usize] = ACTIONS(2446), - [anon_sym_f32] = ACTIONS(2446), - [anon_sym_f64] = ACTIONS(2446), - [anon_sym_bool] = ACTIONS(2446), - [anon_sym_str] = ACTIONS(2446), - [anon_sym_char] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_DOT_DOT] = ACTIONS(2444), - [anon_sym_COLON_COLON] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2446), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_default] = ACTIONS(2446), - [anon_sym_enum] = ACTIONS(2446), - [anon_sym_fn] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_gen] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_impl] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_loop] = ACTIONS(2446), - [anon_sym_match] = ACTIONS(2446), - [anon_sym_mod] = ACTIONS(2446), - [anon_sym_pub] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2446), - [anon_sym_trait] = ACTIONS(2446), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_union] = ACTIONS(2446), - [anon_sym_unsafe] = ACTIONS(2446), - [anon_sym_use] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2446), - [anon_sym_yield] = ACTIONS(2446), - [anon_sym_move] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [sym_integer_literal] = ACTIONS(2444), - [aux_sym_string_literal_token1] = ACTIONS(2444), - [sym_char_literal] = ACTIONS(2444), - [anon_sym_true] = ACTIONS(2446), - [anon_sym_false] = ACTIONS(2446), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2446), - [sym_super] = ACTIONS(2446), - [sym_crate] = ACTIONS(2446), - [sym_metavariable] = ACTIONS(2444), - [sym__raw_string_literal_start] = ACTIONS(2444), - [sym_float_literal] = ACTIONS(2444), + [ts_builtin_sym_end] = ACTIONS(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(631)] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2448), - [sym_identifier] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_macro_rules_BANG] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_u8] = ACTIONS(2450), - [anon_sym_i8] = ACTIONS(2450), - [anon_sym_u16] = ACTIONS(2450), - [anon_sym_i16] = ACTIONS(2450), - [anon_sym_u32] = ACTIONS(2450), - [anon_sym_i32] = ACTIONS(2450), - [anon_sym_u64] = ACTIONS(2450), - [anon_sym_i64] = ACTIONS(2450), - [anon_sym_u128] = ACTIONS(2450), - [anon_sym_i128] = ACTIONS(2450), - [anon_sym_isize] = ACTIONS(2450), - [anon_sym_usize] = ACTIONS(2450), - [anon_sym_f32] = ACTIONS(2450), - [anon_sym_f64] = ACTIONS(2450), - [anon_sym_bool] = ACTIONS(2450), - [anon_sym_str] = ACTIONS(2450), - [anon_sym_char] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(2448), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_DOT_DOT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_fn] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_gen] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_impl] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_loop] = ACTIONS(2450), - [anon_sym_match] = ACTIONS(2450), - [anon_sym_mod] = ACTIONS(2450), - [anon_sym_pub] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_trait] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(2450), - [anon_sym_use] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_move] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2450), - [sym_integer_literal] = ACTIONS(2448), - [aux_sym_string_literal_token1] = ACTIONS(2448), - [sym_char_literal] = ACTIONS(2448), - [anon_sym_true] = ACTIONS(2450), - [anon_sym_false] = ACTIONS(2450), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2450), - [sym_super] = ACTIONS(2450), - [sym_crate] = ACTIONS(2450), - [sym_metavariable] = ACTIONS(2448), - [sym__raw_string_literal_start] = ACTIONS(2448), - [sym_float_literal] = ACTIONS(2448), + [ts_builtin_sym_end] = ACTIONS(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(632)] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2452), - [sym_identifier] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_macro_rules_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_u8] = ACTIONS(2454), - [anon_sym_i8] = ACTIONS(2454), - [anon_sym_u16] = ACTIONS(2454), - [anon_sym_i16] = ACTIONS(2454), - [anon_sym_u32] = ACTIONS(2454), - [anon_sym_i32] = ACTIONS(2454), - [anon_sym_u64] = ACTIONS(2454), - [anon_sym_i64] = ACTIONS(2454), - [anon_sym_u128] = ACTIONS(2454), - [anon_sym_i128] = ACTIONS(2454), - [anon_sym_isize] = ACTIONS(2454), - [anon_sym_usize] = ACTIONS(2454), - [anon_sym_f32] = ACTIONS(2454), - [anon_sym_f64] = ACTIONS(2454), - [anon_sym_bool] = ACTIONS(2454), - [anon_sym_str] = ACTIONS(2454), - [anon_sym_char] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_DOT_DOT] = ACTIONS(2452), - [anon_sym_COLON_COLON] = ACTIONS(2452), - [anon_sym_POUND] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_default] = ACTIONS(2454), - [anon_sym_enum] = ACTIONS(2454), - [anon_sym_fn] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_gen] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_impl] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_loop] = ACTIONS(2454), - [anon_sym_match] = ACTIONS(2454), - [anon_sym_mod] = ACTIONS(2454), - [anon_sym_pub] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_struct] = ACTIONS(2454), - [anon_sym_trait] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_union] = ACTIONS(2454), - [anon_sym_unsafe] = ACTIONS(2454), - [anon_sym_use] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_extern] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2454), - [anon_sym_move] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2454), - [sym_integer_literal] = ACTIONS(2452), - [aux_sym_string_literal_token1] = ACTIONS(2452), - [sym_char_literal] = ACTIONS(2452), - [anon_sym_true] = ACTIONS(2454), - [anon_sym_false] = ACTIONS(2454), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_crate] = ACTIONS(2454), - [sym_metavariable] = ACTIONS(2452), - [sym__raw_string_literal_start] = ACTIONS(2452), - [sym_float_literal] = ACTIONS(2452), + [ts_builtin_sym_end] = ACTIONS(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(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2456), - [sym_identifier] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2456), - [anon_sym_macro_rules_BANG] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_u8] = ACTIONS(2458), - [anon_sym_i8] = ACTIONS(2458), - [anon_sym_u16] = ACTIONS(2458), - [anon_sym_i16] = ACTIONS(2458), - [anon_sym_u32] = ACTIONS(2458), - [anon_sym_i32] = ACTIONS(2458), - [anon_sym_u64] = ACTIONS(2458), - [anon_sym_i64] = ACTIONS(2458), - [anon_sym_u128] = ACTIONS(2458), - [anon_sym_i128] = ACTIONS(2458), - [anon_sym_isize] = ACTIONS(2458), - [anon_sym_usize] = ACTIONS(2458), - [anon_sym_f32] = ACTIONS(2458), - [anon_sym_f64] = ACTIONS(2458), - [anon_sym_bool] = ACTIONS(2458), - [anon_sym_str] = ACTIONS(2458), - [anon_sym_char] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_DOT_DOT] = ACTIONS(2456), - [anon_sym_COLON_COLON] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [anon_sym_fn] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_gen] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_impl] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_loop] = ACTIONS(2458), - [anon_sym_match] = ACTIONS(2458), - [anon_sym_mod] = ACTIONS(2458), - [anon_sym_pub] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_struct] = ACTIONS(2458), - [anon_sym_trait] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_union] = ACTIONS(2458), - [anon_sym_unsafe] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_extern] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_move] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [sym_integer_literal] = ACTIONS(2456), - [aux_sym_string_literal_token1] = ACTIONS(2456), - [sym_char_literal] = ACTIONS(2456), - [anon_sym_true] = ACTIONS(2458), - [anon_sym_false] = ACTIONS(2458), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_crate] = ACTIONS(2458), - [sym_metavariable] = ACTIONS(2456), - [sym__raw_string_literal_start] = ACTIONS(2456), - [sym_float_literal] = ACTIONS(2456), + [ts_builtin_sym_end] = ACTIONS(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(634)] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2460), - [sym_identifier] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_macro_rules_BANG] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_u8] = ACTIONS(2462), - [anon_sym_i8] = ACTIONS(2462), - [anon_sym_u16] = ACTIONS(2462), - [anon_sym_i16] = ACTIONS(2462), - [anon_sym_u32] = ACTIONS(2462), - [anon_sym_i32] = ACTIONS(2462), - [anon_sym_u64] = ACTIONS(2462), - [anon_sym_i64] = ACTIONS(2462), - [anon_sym_u128] = ACTIONS(2462), - [anon_sym_i128] = ACTIONS(2462), - [anon_sym_isize] = ACTIONS(2462), - [anon_sym_usize] = ACTIONS(2462), - [anon_sym_f32] = ACTIONS(2462), - [anon_sym_f64] = ACTIONS(2462), - [anon_sym_bool] = ACTIONS(2462), - [anon_sym_str] = ACTIONS(2462), - [anon_sym_char] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_DOT_DOT] = ACTIONS(2460), - [anon_sym_COLON_COLON] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(2462), - [anon_sym_async] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_default] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_fn] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_gen] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_impl] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_loop] = ACTIONS(2462), - [anon_sym_match] = ACTIONS(2462), - [anon_sym_mod] = ACTIONS(2462), - [anon_sym_pub] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_struct] = ACTIONS(2462), - [anon_sym_trait] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_union] = ACTIONS(2462), - [anon_sym_unsafe] = ACTIONS(2462), - [anon_sym_use] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_yield] = ACTIONS(2462), - [anon_sym_move] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [sym_integer_literal] = ACTIONS(2460), - [aux_sym_string_literal_token1] = ACTIONS(2460), - [sym_char_literal] = ACTIONS(2460), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2462), - [sym_super] = ACTIONS(2462), - [sym_crate] = ACTIONS(2462), - [sym_metavariable] = ACTIONS(2460), - [sym__raw_string_literal_start] = ACTIONS(2460), - [sym_float_literal] = ACTIONS(2460), + [ts_builtin_sym_end] = ACTIONS(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(635)] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_macro_rules_BANG] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_u8] = ACTIONS(2466), - [anon_sym_i8] = ACTIONS(2466), - [anon_sym_u16] = ACTIONS(2466), - [anon_sym_i16] = ACTIONS(2466), - [anon_sym_u32] = ACTIONS(2466), - [anon_sym_i32] = ACTIONS(2466), - [anon_sym_u64] = ACTIONS(2466), - [anon_sym_i64] = ACTIONS(2466), - [anon_sym_u128] = ACTIONS(2466), - [anon_sym_i128] = ACTIONS(2466), - [anon_sym_isize] = ACTIONS(2466), - [anon_sym_usize] = ACTIONS(2466), - [anon_sym_f32] = ACTIONS(2466), - [anon_sym_f64] = ACTIONS(2466), - [anon_sym_bool] = ACTIONS(2466), - [anon_sym_str] = ACTIONS(2466), - [anon_sym_char] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_fn] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_gen] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_impl] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_loop] = ACTIONS(2466), - [anon_sym_match] = ACTIONS(2466), - [anon_sym_mod] = ACTIONS(2466), - [anon_sym_pub] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_trait] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2466), - [anon_sym_unsafe] = ACTIONS(2466), - [anon_sym_use] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_move] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [sym_integer_literal] = ACTIONS(2464), - [aux_sym_string_literal_token1] = ACTIONS(2464), - [sym_char_literal] = ACTIONS(2464), - [anon_sym_true] = ACTIONS(2466), - [anon_sym_false] = ACTIONS(2466), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_crate] = ACTIONS(2466), - [sym_metavariable] = ACTIONS(2464), - [sym__raw_string_literal_start] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2464), + [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(636)] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_macro_rules_BANG] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_u8] = ACTIONS(2470), - [anon_sym_i8] = ACTIONS(2470), - [anon_sym_u16] = ACTIONS(2470), - [anon_sym_i16] = ACTIONS(2470), - [anon_sym_u32] = ACTIONS(2470), - [anon_sym_i32] = ACTIONS(2470), - [anon_sym_u64] = ACTIONS(2470), - [anon_sym_i64] = ACTIONS(2470), - [anon_sym_u128] = ACTIONS(2470), - [anon_sym_i128] = ACTIONS(2470), - [anon_sym_isize] = ACTIONS(2470), - [anon_sym_usize] = ACTIONS(2470), - [anon_sym_f32] = ACTIONS(2470), - [anon_sym_f64] = ACTIONS(2470), - [anon_sym_bool] = ACTIONS(2470), - [anon_sym_str] = ACTIONS(2470), - [anon_sym_char] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_DOT_DOT] = ACTIONS(2468), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_fn] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_gen] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_impl] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_mod] = ACTIONS(2470), - [anon_sym_pub] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_struct] = ACTIONS(2470), - [anon_sym_trait] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_union] = ACTIONS(2470), - [anon_sym_unsafe] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_move] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [sym_integer_literal] = ACTIONS(2468), - [aux_sym_string_literal_token1] = ACTIONS(2468), - [sym_char_literal] = ACTIONS(2468), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_crate] = ACTIONS(2470), - [sym_metavariable] = ACTIONS(2468), - [sym__raw_string_literal_start] = ACTIONS(2468), - [sym_float_literal] = ACTIONS(2468), + [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(637)] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_identifier] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_macro_rules_BANG] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_u8] = ACTIONS(2474), - [anon_sym_i8] = ACTIONS(2474), - [anon_sym_u16] = ACTIONS(2474), - [anon_sym_i16] = ACTIONS(2474), - [anon_sym_u32] = ACTIONS(2474), - [anon_sym_i32] = ACTIONS(2474), - [anon_sym_u64] = ACTIONS(2474), - [anon_sym_i64] = ACTIONS(2474), - [anon_sym_u128] = ACTIONS(2474), - [anon_sym_i128] = ACTIONS(2474), - [anon_sym_isize] = ACTIONS(2474), - [anon_sym_usize] = ACTIONS(2474), - [anon_sym_f32] = ACTIONS(2474), - [anon_sym_f64] = ACTIONS(2474), - [anon_sym_bool] = ACTIONS(2474), - [anon_sym_str] = ACTIONS(2474), - [anon_sym_char] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_fn] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_gen] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_impl] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_mod] = ACTIONS(2474), - [anon_sym_pub] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_struct] = ACTIONS(2474), - [anon_sym_trait] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_union] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_move] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2472), - [aux_sym_string_literal_token1] = ACTIONS(2472), - [sym_char_literal] = ACTIONS(2472), - [anon_sym_true] = ACTIONS(2474), - [anon_sym_false] = ACTIONS(2474), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_crate] = ACTIONS(2474), - [sym_metavariable] = ACTIONS(2472), - [sym__raw_string_literal_start] = ACTIONS(2472), - [sym_float_literal] = ACTIONS(2472), + [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(638)] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), + [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(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [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(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), + [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(641)] = { + [sym_empty_statement] = STATE(1090), + [sym_macro_definition] = STATE(1090), + [sym_attribute_item] = STATE(1090), + [sym_inner_attribute_item] = STATE(1090), + [sym_mod_item] = STATE(1090), + [sym_foreign_mod_item] = STATE(1090), + [sym_struct_item] = STATE(1090), + [sym_union_item] = STATE(1090), + [sym_enum_item] = STATE(1090), + [sym_extern_crate_declaration] = STATE(1090), + [sym_const_item] = STATE(1090), + [sym_static_item] = STATE(1090), + [sym_type_item] = STATE(1090), + [sym_function_item] = STATE(1090), + [sym_function_signature_item] = STATE(1090), + [sym_function_modifiers] = STATE(3720), + [sym_impl_item] = STATE(1090), + [sym_trait_item] = STATE(1090), + [sym_associated_type] = STATE(1090), + [sym_let_declaration] = STATE(1090), + [sym_use_declaration] = STATE(1090), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(1998), + [sym_bracketed_type] = STATE(3440), + [sym_generic_type_with_turbofish] = STATE(3466), + [sym_macro_invocation] = STATE(1090), + [sym_scoped_identifier] = STATE(3193), + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [aux_sym_declaration_list_repeat1] = STATE(641), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2393), + [anon_sym_macro_rules_BANG] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_gen] = ACTIONS(2428), + [anon_sym_impl] = ACTIONS(2431), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2458), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2467), + [sym_super] = ACTIONS(2467), + [sym_crate] = ACTIONS(2470), + [sym_metavariable] = ACTIONS(2473), + }, + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2476), [sym_identifier] = ACTIONS(2478), [anon_sym_SEMI] = ACTIONS(2476), @@ -82849,9 +83288,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2476), [sym_float_literal] = ACTIONS(2476), }, - [STATE(639)] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2480), [sym_identifier] = ACTIONS(2482), [anon_sym_SEMI] = ACTIONS(2480), @@ -82930,9 +83369,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2480), [sym_float_literal] = ACTIONS(2480), }, - [STATE(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), + [STATE(644)] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2484), [sym_identifier] = ACTIONS(2486), [anon_sym_SEMI] = ACTIONS(2484), @@ -83011,1314 +83450,1257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2484), [sym_float_literal] = ACTIONS(2484), }, - [STATE(641)] = { - [sym_empty_statement] = STATE(1327), - [sym_macro_definition] = STATE(1327), - [sym_attribute_item] = STATE(1327), - [sym_inner_attribute_item] = STATE(1327), - [sym_mod_item] = STATE(1327), - [sym_foreign_mod_item] = STATE(1327), - [sym_struct_item] = STATE(1327), - [sym_union_item] = STATE(1327), - [sym_enum_item] = STATE(1327), - [sym_extern_crate_declaration] = STATE(1327), - [sym_const_item] = STATE(1327), - [sym_static_item] = STATE(1327), - [sym_type_item] = STATE(1327), - [sym_function_item] = STATE(1327), - [sym_function_signature_item] = STATE(1327), - [sym_function_modifiers] = STATE(3675), - [sym_impl_item] = STATE(1327), - [sym_trait_item] = STATE(1327), - [sym_associated_type] = STATE(1327), - [sym_let_declaration] = STATE(1327), - [sym_use_declaration] = STATE(1327), - [sym_extern_modifier] = STATE(2174), - [sym_visibility_modifier] = STATE(1971), - [sym_bracketed_type] = STATE(3402), - [sym_generic_type_with_turbofish] = STATE(3427), - [sym_macro_invocation] = STATE(1327), - [sym_scoped_identifier] = STATE(3358), - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), - [aux_sym_declaration_list_repeat1] = STATE(773), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2488), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2190), - [anon_sym_gen] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2198), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2202), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2206), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2218), - [sym_metavariable] = ACTIONS(2220), - }, - [STATE(642)] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2490), - [sym_identifier] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_macro_rules_BANG] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_u8] = ACTIONS(2492), - [anon_sym_i8] = ACTIONS(2492), - [anon_sym_u16] = ACTIONS(2492), - [anon_sym_i16] = ACTIONS(2492), - [anon_sym_u32] = ACTIONS(2492), - [anon_sym_i32] = ACTIONS(2492), - [anon_sym_u64] = ACTIONS(2492), - [anon_sym_i64] = ACTIONS(2492), - [anon_sym_u128] = ACTIONS(2492), - [anon_sym_i128] = ACTIONS(2492), - [anon_sym_isize] = ACTIONS(2492), - [anon_sym_usize] = ACTIONS(2492), - [anon_sym_f32] = ACTIONS(2492), - [anon_sym_f64] = ACTIONS(2492), - [anon_sym_bool] = ACTIONS(2492), - [anon_sym_str] = ACTIONS(2492), - [anon_sym_char] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_DOT_DOT] = ACTIONS(2490), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2492), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_fn] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_gen] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_impl] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_mod] = ACTIONS(2492), - [anon_sym_pub] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_trait] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_unsafe] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_move] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [sym_integer_literal] = ACTIONS(2490), - [aux_sym_string_literal_token1] = ACTIONS(2490), - [sym_char_literal] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2492), - [anon_sym_false] = ACTIONS(2492), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2492), - [sym_super] = ACTIONS(2492), - [sym_crate] = ACTIONS(2492), - [sym_metavariable] = ACTIONS(2490), - [sym__raw_string_literal_start] = ACTIONS(2490), - [sym_float_literal] = ACTIONS(2490), - }, - [STATE(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_macro_rules_BANG] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_u8] = ACTIONS(2496), - [anon_sym_i8] = ACTIONS(2496), - [anon_sym_u16] = ACTIONS(2496), - [anon_sym_i16] = ACTIONS(2496), - [anon_sym_u32] = ACTIONS(2496), - [anon_sym_i32] = ACTIONS(2496), - [anon_sym_u64] = ACTIONS(2496), - [anon_sym_i64] = ACTIONS(2496), - [anon_sym_u128] = ACTIONS(2496), - [anon_sym_i128] = ACTIONS(2496), - [anon_sym_isize] = ACTIONS(2496), - [anon_sym_usize] = ACTIONS(2496), - [anon_sym_f32] = ACTIONS(2496), - [anon_sym_f64] = ACTIONS(2496), - [anon_sym_bool] = ACTIONS(2496), - [anon_sym_str] = ACTIONS(2496), - [anon_sym_char] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2496), - [anon_sym_async] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_gen] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_impl] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_mod] = ACTIONS(2496), - [anon_sym_pub] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_trait] = ACTIONS(2496), - [anon_sym_type] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_unsafe] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_yield] = ACTIONS(2496), - [anon_sym_move] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [sym_integer_literal] = ACTIONS(2494), - [aux_sym_string_literal_token1] = ACTIONS(2494), - [sym_char_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_crate] = ACTIONS(2496), - [sym_metavariable] = ACTIONS(2494), - [sym__raw_string_literal_start] = ACTIONS(2494), - [sym_float_literal] = ACTIONS(2494), - }, - [STATE(644)] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_macro_rules_BANG] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_u8] = ACTIONS(2500), - [anon_sym_i8] = ACTIONS(2500), - [anon_sym_u16] = ACTIONS(2500), - [anon_sym_i16] = ACTIONS(2500), - [anon_sym_u32] = ACTIONS(2500), - [anon_sym_i32] = ACTIONS(2500), - [anon_sym_u64] = ACTIONS(2500), - [anon_sym_i64] = ACTIONS(2500), - [anon_sym_u128] = ACTIONS(2500), - [anon_sym_i128] = ACTIONS(2500), - [anon_sym_isize] = ACTIONS(2500), - [anon_sym_usize] = ACTIONS(2500), - [anon_sym_f32] = ACTIONS(2500), - [anon_sym_f64] = ACTIONS(2500), - [anon_sym_bool] = ACTIONS(2500), - [anon_sym_str] = ACTIONS(2500), - [anon_sym_char] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_DOT_DOT] = ACTIONS(2498), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_fn] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_gen] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_loop] = ACTIONS(2500), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_mod] = ACTIONS(2500), - [anon_sym_pub] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_trait] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_unsafe] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2500), - [anon_sym_move] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [sym_integer_literal] = ACTIONS(2498), - [aux_sym_string_literal_token1] = ACTIONS(2498), - [sym_char_literal] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2500), - [anon_sym_false] = ACTIONS(2500), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2500), - [sym_super] = ACTIONS(2500), - [sym_crate] = ACTIONS(2500), - [sym_metavariable] = ACTIONS(2498), - [sym__raw_string_literal_start] = ACTIONS(2498), - [sym_float_literal] = ACTIONS(2498), - }, [STATE(645)] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [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(2488), + [sym_identifier] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym_macro_rules_BANG] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_DOT_DOT] = ACTIONS(2488), + [anon_sym_COLON_COLON] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2490), + [anon_sym_async] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_fn] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_gen] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_impl] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_mod] = ACTIONS(2490), + [anon_sym_pub] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_trait] = ACTIONS(2490), + [anon_sym_type] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_unsafe] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_yield] = ACTIONS(2490), + [anon_sym_move] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [sym_integer_literal] = ACTIONS(2488), + [aux_sym_string_literal_token1] = ACTIONS(2488), + [sym_char_literal] = ACTIONS(2488), + [anon_sym_true] = ACTIONS(2490), + [anon_sym_false] = ACTIONS(2490), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2490), + [sym_super] = ACTIONS(2490), + [sym_crate] = ACTIONS(2490), + [sym_metavariable] = ACTIONS(2488), + [sym__raw_string_literal_start] = ACTIONS(2488), + [sym_float_literal] = ACTIONS(2488), }, [STATE(646)] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [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), + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_macro_rules_BANG] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_u8] = ACTIONS(2494), + [anon_sym_i8] = ACTIONS(2494), + [anon_sym_u16] = ACTIONS(2494), + [anon_sym_i16] = ACTIONS(2494), + [anon_sym_u32] = ACTIONS(2494), + [anon_sym_i32] = ACTIONS(2494), + [anon_sym_u64] = ACTIONS(2494), + [anon_sym_i64] = ACTIONS(2494), + [anon_sym_u128] = ACTIONS(2494), + [anon_sym_i128] = ACTIONS(2494), + [anon_sym_isize] = ACTIONS(2494), + [anon_sym_usize] = ACTIONS(2494), + [anon_sym_f32] = ACTIONS(2494), + [anon_sym_f64] = ACTIONS(2494), + [anon_sym_bool] = ACTIONS(2494), + [anon_sym_str] = ACTIONS(2494), + [anon_sym_char] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_DOT_DOT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2494), + [anon_sym_async] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_fn] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_gen] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_impl] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_mod] = ACTIONS(2494), + [anon_sym_pub] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_trait] = ACTIONS(2494), + [anon_sym_type] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_unsafe] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_yield] = ACTIONS(2494), + [anon_sym_move] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [sym_integer_literal] = ACTIONS(2492), + [aux_sym_string_literal_token1] = ACTIONS(2492), + [sym_char_literal] = ACTIONS(2492), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2494), + [sym_super] = ACTIONS(2494), + [sym_crate] = ACTIONS(2494), + [sym_metavariable] = ACTIONS(2492), + [sym__raw_string_literal_start] = ACTIONS(2492), + [sym_float_literal] = ACTIONS(2492), }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_macro_rules_BANG] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_u8] = ACTIONS(2512), - [anon_sym_i8] = ACTIONS(2512), - [anon_sym_u16] = ACTIONS(2512), - [anon_sym_i16] = ACTIONS(2512), - [anon_sym_u32] = ACTIONS(2512), - [anon_sym_i32] = ACTIONS(2512), - [anon_sym_u64] = ACTIONS(2512), - [anon_sym_i64] = ACTIONS(2512), - [anon_sym_u128] = ACTIONS(2512), - [anon_sym_i128] = ACTIONS(2512), - [anon_sym_isize] = ACTIONS(2512), - [anon_sym_usize] = ACTIONS(2512), - [anon_sym_f32] = ACTIONS(2512), - [anon_sym_f64] = ACTIONS(2512), - [anon_sym_bool] = ACTIONS(2512), - [anon_sym_str] = ACTIONS(2512), - [anon_sym_char] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_DOT_DOT] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_async] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), - [anon_sym_fn] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_gen] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_impl] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_mod] = ACTIONS(2512), - [anon_sym_pub] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(2512), - [anon_sym_trait] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_union] = ACTIONS(2512), - [anon_sym_unsafe] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_yield] = ACTIONS(2512), - [anon_sym_move] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [sym_integer_literal] = ACTIONS(2510), - [aux_sym_string_literal_token1] = ACTIONS(2510), - [sym_char_literal] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(2512), - [sym_crate] = ACTIONS(2512), - [sym_metavariable] = ACTIONS(2510), - [sym__raw_string_literal_start] = ACTIONS(2510), - [sym_float_literal] = ACTIONS(2510), + [ts_builtin_sym_end] = ACTIONS(2496), + [sym_identifier] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_macro_rules_BANG] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_u8] = ACTIONS(2498), + [anon_sym_i8] = ACTIONS(2498), + [anon_sym_u16] = ACTIONS(2498), + [anon_sym_i16] = ACTIONS(2498), + [anon_sym_u32] = ACTIONS(2498), + [anon_sym_i32] = ACTIONS(2498), + [anon_sym_u64] = ACTIONS(2498), + [anon_sym_i64] = ACTIONS(2498), + [anon_sym_u128] = ACTIONS(2498), + [anon_sym_i128] = ACTIONS(2498), + [anon_sym_isize] = ACTIONS(2498), + [anon_sym_usize] = ACTIONS(2498), + [anon_sym_f32] = ACTIONS(2498), + [anon_sym_f64] = ACTIONS(2498), + [anon_sym_bool] = ACTIONS(2498), + [anon_sym_str] = ACTIONS(2498), + [anon_sym_char] = ACTIONS(2498), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_DOT_DOT] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_fn] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_gen] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_impl] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_loop] = ACTIONS(2498), + [anon_sym_match] = ACTIONS(2498), + [anon_sym_mod] = ACTIONS(2498), + [anon_sym_pub] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_trait] = ACTIONS(2498), + [anon_sym_type] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsafe] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym_yield] = ACTIONS(2498), + [anon_sym_move] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2498), + [sym_integer_literal] = ACTIONS(2496), + [aux_sym_string_literal_token1] = ACTIONS(2496), + [sym_char_literal] = ACTIONS(2496), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2498), + [sym_super] = ACTIONS(2498), + [sym_crate] = ACTIONS(2498), + [sym_metavariable] = ACTIONS(2496), + [sym__raw_string_literal_start] = ACTIONS(2496), + [sym_float_literal] = ACTIONS(2496), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_macro_rules_BANG] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_u8] = ACTIONS(2516), - [anon_sym_i8] = ACTIONS(2516), - [anon_sym_u16] = ACTIONS(2516), - [anon_sym_i16] = ACTIONS(2516), - [anon_sym_u32] = ACTIONS(2516), - [anon_sym_i32] = ACTIONS(2516), - [anon_sym_u64] = ACTIONS(2516), - [anon_sym_i64] = ACTIONS(2516), - [anon_sym_u128] = ACTIONS(2516), - [anon_sym_i128] = ACTIONS(2516), - [anon_sym_isize] = ACTIONS(2516), - [anon_sym_usize] = ACTIONS(2516), - [anon_sym_f32] = ACTIONS(2516), - [anon_sym_f64] = ACTIONS(2516), - [anon_sym_bool] = ACTIONS(2516), - [anon_sym_str] = ACTIONS(2516), - [anon_sym_char] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_DOT_DOT] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_async] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_default] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), - [anon_sym_fn] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_gen] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_impl] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_mod] = ACTIONS(2516), - [anon_sym_pub] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(2516), - [anon_sym_trait] = ACTIONS(2516), - [anon_sym_type] = ACTIONS(2516), - [anon_sym_union] = ACTIONS(2516), - [anon_sym_unsafe] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_yield] = ACTIONS(2516), - [anon_sym_move] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [sym_integer_literal] = ACTIONS(2514), - [aux_sym_string_literal_token1] = ACTIONS(2514), - [sym_char_literal] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2516), - [sym_super] = ACTIONS(2516), - [sym_crate] = ACTIONS(2516), - [sym_metavariable] = ACTIONS(2514), - [sym__raw_string_literal_start] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(2514), + [ts_builtin_sym_end] = ACTIONS(2500), + [sym_identifier] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym_macro_rules_BANG] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_u8] = ACTIONS(2502), + [anon_sym_i8] = ACTIONS(2502), + [anon_sym_u16] = ACTIONS(2502), + [anon_sym_i16] = ACTIONS(2502), + [anon_sym_u32] = ACTIONS(2502), + [anon_sym_i32] = ACTIONS(2502), + [anon_sym_u64] = ACTIONS(2502), + [anon_sym_i64] = ACTIONS(2502), + [anon_sym_u128] = ACTIONS(2502), + [anon_sym_i128] = ACTIONS(2502), + [anon_sym_isize] = ACTIONS(2502), + [anon_sym_usize] = ACTIONS(2502), + [anon_sym_f32] = ACTIONS(2502), + [anon_sym_f64] = ACTIONS(2502), + [anon_sym_bool] = ACTIONS(2502), + [anon_sym_str] = ACTIONS(2502), + [anon_sym_char] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_DOT_DOT] = ACTIONS(2500), + [anon_sym_COLON_COLON] = ACTIONS(2500), + [anon_sym_POUND] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_async] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_default] = ACTIONS(2502), + [anon_sym_enum] = ACTIONS(2502), + [anon_sym_fn] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_gen] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_impl] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_mod] = ACTIONS(2502), + [anon_sym_pub] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2502), + [anon_sym_struct] = ACTIONS(2502), + [anon_sym_trait] = ACTIONS(2502), + [anon_sym_type] = ACTIONS(2502), + [anon_sym_union] = ACTIONS(2502), + [anon_sym_unsafe] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_yield] = ACTIONS(2502), + [anon_sym_move] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2502), + [sym_integer_literal] = ACTIONS(2500), + [aux_sym_string_literal_token1] = ACTIONS(2500), + [sym_char_literal] = ACTIONS(2500), + [anon_sym_true] = ACTIONS(2502), + [anon_sym_false] = ACTIONS(2502), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2502), + [sym_super] = ACTIONS(2502), + [sym_crate] = ACTIONS(2502), + [sym_metavariable] = ACTIONS(2500), + [sym__raw_string_literal_start] = ACTIONS(2500), + [sym_float_literal] = ACTIONS(2500), }, [STATE(649)] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_gen] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), + [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(650)] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_u8] = ACTIONS(2524), - [anon_sym_i8] = ACTIONS(2524), - [anon_sym_u16] = ACTIONS(2524), - [anon_sym_i16] = ACTIONS(2524), - [anon_sym_u32] = ACTIONS(2524), - [anon_sym_i32] = ACTIONS(2524), - [anon_sym_u64] = ACTIONS(2524), - [anon_sym_i64] = ACTIONS(2524), - [anon_sym_u128] = ACTIONS(2524), - [anon_sym_i128] = ACTIONS(2524), - [anon_sym_isize] = ACTIONS(2524), - [anon_sym_usize] = ACTIONS(2524), - [anon_sym_f32] = ACTIONS(2524), - [anon_sym_f64] = ACTIONS(2524), - [anon_sym_bool] = ACTIONS(2524), - [anon_sym_str] = ACTIONS(2524), - [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_gen] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), + [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(651)] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [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), + [ts_builtin_sym_end] = ACTIONS(2512), + [sym_identifier] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_macro_rules_BANG] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_u8] = ACTIONS(2514), + [anon_sym_i8] = ACTIONS(2514), + [anon_sym_u16] = ACTIONS(2514), + [anon_sym_i16] = ACTIONS(2514), + [anon_sym_u32] = ACTIONS(2514), + [anon_sym_i32] = ACTIONS(2514), + [anon_sym_u64] = ACTIONS(2514), + [anon_sym_i64] = ACTIONS(2514), + [anon_sym_u128] = ACTIONS(2514), + [anon_sym_i128] = ACTIONS(2514), + [anon_sym_isize] = ACTIONS(2514), + [anon_sym_usize] = ACTIONS(2514), + [anon_sym_f32] = ACTIONS(2514), + [anon_sym_f64] = ACTIONS(2514), + [anon_sym_bool] = ACTIONS(2514), + [anon_sym_str] = ACTIONS(2514), + [anon_sym_char] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_DOT_DOT] = ACTIONS(2512), + [anon_sym_COLON_COLON] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_const] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_default] = ACTIONS(2514), + [anon_sym_enum] = ACTIONS(2514), + [anon_sym_fn] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2514), + [anon_sym_gen] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_impl] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2514), + [anon_sym_loop] = ACTIONS(2514), + [anon_sym_match] = ACTIONS(2514), + [anon_sym_mod] = ACTIONS(2514), + [anon_sym_pub] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2514), + [anon_sym_struct] = ACTIONS(2514), + [anon_sym_trait] = ACTIONS(2514), + [anon_sym_type] = ACTIONS(2514), + [anon_sym_union] = ACTIONS(2514), + [anon_sym_unsafe] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2514), + [anon_sym_while] = ACTIONS(2514), + [anon_sym_extern] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2514), + [anon_sym_move] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2514), + [sym_integer_literal] = ACTIONS(2512), + [aux_sym_string_literal_token1] = ACTIONS(2512), + [sym_char_literal] = ACTIONS(2512), + [anon_sym_true] = ACTIONS(2514), + [anon_sym_false] = ACTIONS(2514), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2514), + [sym_super] = ACTIONS(2514), + [sym_crate] = ACTIONS(2514), + [sym_metavariable] = ACTIONS(2512), + [sym__raw_string_literal_start] = ACTIONS(2512), + [sym_float_literal] = ACTIONS(2512), }, [STATE(652)] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_u8] = ACTIONS(2532), - [anon_sym_i8] = ACTIONS(2532), - [anon_sym_u16] = ACTIONS(2532), - [anon_sym_i16] = ACTIONS(2532), - [anon_sym_u32] = ACTIONS(2532), - [anon_sym_i32] = ACTIONS(2532), - [anon_sym_u64] = ACTIONS(2532), - [anon_sym_i64] = ACTIONS(2532), - [anon_sym_u128] = ACTIONS(2532), - [anon_sym_i128] = ACTIONS(2532), - [anon_sym_isize] = ACTIONS(2532), - [anon_sym_usize] = ACTIONS(2532), - [anon_sym_f32] = ACTIONS(2532), - [anon_sym_f64] = ACTIONS(2532), - [anon_sym_bool] = ACTIONS(2532), - [anon_sym_str] = ACTIONS(2532), - [anon_sym_char] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_DOT_DOT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_async] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_default] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_gen] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_impl] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_mod] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_trait] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_yield] = ACTIONS(2532), - [anon_sym_move] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [sym_integer_literal] = ACTIONS(2530), - [aux_sym_string_literal_token1] = ACTIONS(2530), - [sym_char_literal] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2532), - [sym_super] = ACTIONS(2532), - [sym_crate] = ACTIONS(2532), - [sym_metavariable] = ACTIONS(2530), - [sym__raw_string_literal_start] = ACTIONS(2530), - [sym_float_literal] = ACTIONS(2530), + [ts_builtin_sym_end] = ACTIONS(2516), + [sym_identifier] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_macro_rules_BANG] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_u8] = ACTIONS(2518), + [anon_sym_i8] = ACTIONS(2518), + [anon_sym_u16] = ACTIONS(2518), + [anon_sym_i16] = ACTIONS(2518), + [anon_sym_u32] = ACTIONS(2518), + [anon_sym_i32] = ACTIONS(2518), + [anon_sym_u64] = ACTIONS(2518), + [anon_sym_i64] = ACTIONS(2518), + [anon_sym_u128] = ACTIONS(2518), + [anon_sym_i128] = ACTIONS(2518), + [anon_sym_isize] = ACTIONS(2518), + [anon_sym_usize] = ACTIONS(2518), + [anon_sym_f32] = ACTIONS(2518), + [anon_sym_f64] = ACTIONS(2518), + [anon_sym_bool] = ACTIONS(2518), + [anon_sym_str] = ACTIONS(2518), + [anon_sym_char] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_COLON_COLON] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_default] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + [anon_sym_fn] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_gen] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_impl] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_loop] = ACTIONS(2518), + [anon_sym_match] = ACTIONS(2518), + [anon_sym_mod] = ACTIONS(2518), + [anon_sym_pub] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_struct] = ACTIONS(2518), + [anon_sym_trait] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_union] = ACTIONS(2518), + [anon_sym_unsafe] = ACTIONS(2518), + [anon_sym_use] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_extern] = ACTIONS(2518), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_move] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [sym_integer_literal] = ACTIONS(2516), + [aux_sym_string_literal_token1] = ACTIONS(2516), + [sym_char_literal] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2518), + [anon_sym_false] = ACTIONS(2518), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_crate] = ACTIONS(2518), + [sym_metavariable] = ACTIONS(2516), + [sym__raw_string_literal_start] = ACTIONS(2516), + [sym_float_literal] = ACTIONS(2516), }, [STATE(653)] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_macro_rules_BANG] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_DOT_DOT] = ACTIONS(2534), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_async] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_default] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_u8] = ACTIONS(2522), + [anon_sym_i8] = ACTIONS(2522), + [anon_sym_u16] = ACTIONS(2522), + [anon_sym_i16] = ACTIONS(2522), + [anon_sym_u32] = ACTIONS(2522), + [anon_sym_i32] = ACTIONS(2522), + [anon_sym_u64] = ACTIONS(2522), + [anon_sym_i64] = ACTIONS(2522), + [anon_sym_u128] = ACTIONS(2522), + [anon_sym_i128] = ACTIONS(2522), + [anon_sym_isize] = ACTIONS(2522), + [anon_sym_usize] = ACTIONS(2522), + [anon_sym_f32] = ACTIONS(2522), + [anon_sym_f64] = ACTIONS(2522), + [anon_sym_bool] = ACTIONS(2522), + [anon_sym_str] = ACTIONS(2522), + [anon_sym_char] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_gen] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_impl] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_loop] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_mod] = ACTIONS(2522), + [anon_sym_pub] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_trait] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_use] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_extern] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_move] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [sym_integer_literal] = ACTIONS(2520), + [aux_sym_string_literal_token1] = ACTIONS(2520), + [sym_char_literal] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_crate] = ACTIONS(2522), + [sym_metavariable] = ACTIONS(2520), + [sym__raw_string_literal_start] = ACTIONS(2520), + [sym_float_literal] = ACTIONS(2520), }, [STATE(654)] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_u8] = ACTIONS(2540), - [anon_sym_i8] = ACTIONS(2540), - [anon_sym_u16] = ACTIONS(2540), - [anon_sym_i16] = ACTIONS(2540), - [anon_sym_u32] = ACTIONS(2540), - [anon_sym_i32] = ACTIONS(2540), - [anon_sym_u64] = ACTIONS(2540), - [anon_sym_i64] = ACTIONS(2540), - [anon_sym_u128] = ACTIONS(2540), - [anon_sym_i128] = ACTIONS(2540), - [anon_sym_isize] = ACTIONS(2540), - [anon_sym_usize] = ACTIONS(2540), - [anon_sym_f32] = ACTIONS(2540), - [anon_sym_f64] = ACTIONS(2540), - [anon_sym_bool] = ACTIONS(2540), - [anon_sym_str] = ACTIONS(2540), - [anon_sym_char] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2538), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_default] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_fn] = ACTIONS(2540), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_gen] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_macro_rules_BANG] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_u8] = ACTIONS(2526), + [anon_sym_i8] = ACTIONS(2526), + [anon_sym_u16] = ACTIONS(2526), + [anon_sym_i16] = ACTIONS(2526), + [anon_sym_u32] = ACTIONS(2526), + [anon_sym_i32] = ACTIONS(2526), + [anon_sym_u64] = ACTIONS(2526), + [anon_sym_i64] = ACTIONS(2526), + [anon_sym_u128] = ACTIONS(2526), + [anon_sym_i128] = ACTIONS(2526), + [anon_sym_isize] = ACTIONS(2526), + [anon_sym_usize] = ACTIONS(2526), + [anon_sym_f32] = ACTIONS(2526), + [anon_sym_f64] = ACTIONS(2526), + [anon_sym_bool] = ACTIONS(2526), + [anon_sym_str] = ACTIONS(2526), + [anon_sym_char] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_DOT_DOT] = ACTIONS(2524), + [anon_sym_COLON_COLON] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_async] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2526), + [anon_sym_fn] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_gen] = ACTIONS(2526), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_impl] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_loop] = ACTIONS(2526), + [anon_sym_match] = ACTIONS(2526), + [anon_sym_mod] = ACTIONS(2526), + [anon_sym_pub] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2526), + [anon_sym_struct] = ACTIONS(2526), + [anon_sym_trait] = ACTIONS(2526), + [anon_sym_type] = ACTIONS(2526), + [anon_sym_union] = ACTIONS(2526), + [anon_sym_unsafe] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_extern] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_move] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [sym_integer_literal] = ACTIONS(2524), + [aux_sym_string_literal_token1] = ACTIONS(2524), + [sym_char_literal] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2526), + [anon_sym_false] = ACTIONS(2526), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2526), + [sym_super] = ACTIONS(2526), + [sym_crate] = ACTIONS(2526), + [sym_metavariable] = ACTIONS(2524), + [sym__raw_string_literal_start] = ACTIONS(2524), + [sym_float_literal] = ACTIONS(2524), }, [STATE(655)] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_macro_rules_BANG] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_RBRACE] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_u8] = ACTIONS(2544), - [anon_sym_i8] = ACTIONS(2544), - [anon_sym_u16] = ACTIONS(2544), - [anon_sym_i16] = ACTIONS(2544), - [anon_sym_u32] = ACTIONS(2544), - [anon_sym_i32] = ACTIONS(2544), - [anon_sym_u64] = ACTIONS(2544), - [anon_sym_i64] = ACTIONS(2544), - [anon_sym_u128] = ACTIONS(2544), - [anon_sym_i128] = ACTIONS(2544), - [anon_sym_isize] = ACTIONS(2544), - [anon_sym_usize] = ACTIONS(2544), - [anon_sym_f32] = ACTIONS(2544), - [anon_sym_f64] = ACTIONS(2544), - [anon_sym_bool] = ACTIONS(2544), - [anon_sym_str] = ACTIONS(2544), - [anon_sym_char] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_const] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_fn] = ACTIONS(2544), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_gen] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_impl] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2544), - [anon_sym_loop] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2528), + [sym_identifier] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_macro_rules_BANG] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2528), + [anon_sym_u8] = ACTIONS(2530), + [anon_sym_i8] = ACTIONS(2530), + [anon_sym_u16] = ACTIONS(2530), + [anon_sym_i16] = ACTIONS(2530), + [anon_sym_u32] = ACTIONS(2530), + [anon_sym_i32] = ACTIONS(2530), + [anon_sym_u64] = ACTIONS(2530), + [anon_sym_i64] = ACTIONS(2530), + [anon_sym_u128] = ACTIONS(2530), + [anon_sym_i128] = ACTIONS(2530), + [anon_sym_isize] = ACTIONS(2530), + [anon_sym_usize] = ACTIONS(2530), + [anon_sym_f32] = ACTIONS(2530), + [anon_sym_f64] = ACTIONS(2530), + [anon_sym_bool] = ACTIONS(2530), + [anon_sym_str] = ACTIONS(2530), + [anon_sym_char] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_DOT_DOT] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_async] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2530), + [anon_sym_enum] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2530), + [anon_sym_gen] = ACTIONS(2530), + [anon_sym_if] = ACTIONS(2530), + [anon_sym_impl] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2530), + [anon_sym_loop] = ACTIONS(2530), + [anon_sym_match] = ACTIONS(2530), + [anon_sym_mod] = ACTIONS(2530), + [anon_sym_pub] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(2530), + [anon_sym_trait] = ACTIONS(2530), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_union] = ACTIONS(2530), + [anon_sym_unsafe] = ACTIONS(2530), + [anon_sym_use] = ACTIONS(2530), + [anon_sym_while] = ACTIONS(2530), + [anon_sym_extern] = ACTIONS(2530), + [anon_sym_yield] = ACTIONS(2530), + [anon_sym_move] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2530), + [sym_integer_literal] = ACTIONS(2528), + [aux_sym_string_literal_token1] = ACTIONS(2528), + [sym_char_literal] = ACTIONS(2528), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2530), + [sym_super] = ACTIONS(2530), + [sym_crate] = ACTIONS(2530), + [sym_metavariable] = ACTIONS(2528), + [sym__raw_string_literal_start] = ACTIONS(2528), + [sym_float_literal] = ACTIONS(2528), }, [STATE(656)] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [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), + [ts_builtin_sym_end] = ACTIONS(2532), + [sym_identifier] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_macro_rules_BANG] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_u8] = ACTIONS(2534), + [anon_sym_i8] = ACTIONS(2534), + [anon_sym_u16] = ACTIONS(2534), + [anon_sym_i16] = ACTIONS(2534), + [anon_sym_u32] = ACTIONS(2534), + [anon_sym_i32] = ACTIONS(2534), + [anon_sym_u64] = ACTIONS(2534), + [anon_sym_i64] = ACTIONS(2534), + [anon_sym_u128] = ACTIONS(2534), + [anon_sym_i128] = ACTIONS(2534), + [anon_sym_isize] = ACTIONS(2534), + [anon_sym_usize] = ACTIONS(2534), + [anon_sym_f32] = ACTIONS(2534), + [anon_sym_f64] = ACTIONS(2534), + [anon_sym_bool] = ACTIONS(2534), + [anon_sym_str] = ACTIONS(2534), + [anon_sym_char] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_DOT_DOT] = ACTIONS(2532), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(2534), + [anon_sym_break] = ACTIONS(2534), + [anon_sym_const] = ACTIONS(2534), + [anon_sym_continue] = ACTIONS(2534), + [anon_sym_default] = ACTIONS(2534), + [anon_sym_enum] = ACTIONS(2534), + [anon_sym_fn] = ACTIONS(2534), + [anon_sym_for] = ACTIONS(2534), + [anon_sym_gen] = ACTIONS(2534), + [anon_sym_if] = ACTIONS(2534), + [anon_sym_impl] = ACTIONS(2534), + [anon_sym_let] = ACTIONS(2534), + [anon_sym_loop] = ACTIONS(2534), + [anon_sym_match] = ACTIONS(2534), + [anon_sym_mod] = ACTIONS(2534), + [anon_sym_pub] = ACTIONS(2534), + [anon_sym_return] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2534), + [anon_sym_struct] = ACTIONS(2534), + [anon_sym_trait] = ACTIONS(2534), + [anon_sym_type] = ACTIONS(2534), + [anon_sym_union] = ACTIONS(2534), + [anon_sym_unsafe] = ACTIONS(2534), + [anon_sym_use] = ACTIONS(2534), + [anon_sym_while] = ACTIONS(2534), + [anon_sym_extern] = ACTIONS(2534), + [anon_sym_yield] = ACTIONS(2534), + [anon_sym_move] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2534), + [sym_integer_literal] = ACTIONS(2532), + [aux_sym_string_literal_token1] = ACTIONS(2532), + [sym_char_literal] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2534), + [anon_sym_false] = ACTIONS(2534), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2534), + [sym_super] = ACTIONS(2534), + [sym_crate] = ACTIONS(2534), + [sym_metavariable] = ACTIONS(2532), + [sym__raw_string_literal_start] = ACTIONS(2532), + [sym_float_literal] = ACTIONS(2532), }, [STATE(657)] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [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), + [ts_builtin_sym_end] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_macro_rules_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_u8] = ACTIONS(1397), + [anon_sym_i8] = ACTIONS(1397), + [anon_sym_u16] = ACTIONS(1397), + [anon_sym_i16] = ACTIONS(1397), + [anon_sym_u32] = ACTIONS(1397), + [anon_sym_i32] = ACTIONS(1397), + [anon_sym_u64] = ACTIONS(1397), + [anon_sym_i64] = ACTIONS(1397), + [anon_sym_u128] = ACTIONS(1397), + [anon_sym_i128] = ACTIONS(1397), + [anon_sym_isize] = ACTIONS(1397), + [anon_sym_usize] = ACTIONS(1397), + [anon_sym_f32] = ACTIONS(1397), + [anon_sym_f64] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_str] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1395), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_gen] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1397), + [anon_sym_let] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1397), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_mod] = ACTIONS(1397), + [anon_sym_pub] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_trait] = ACTIONS(1397), + [anon_sym_type] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_use] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1397), + [anon_sym_try] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1395), + [aux_sym_string_literal_token1] = ACTIONS(1395), + [sym_char_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_crate] = ACTIONS(1397), + [sym_metavariable] = ACTIONS(1395), + [sym__raw_string_literal_start] = ACTIONS(1395), + [sym_float_literal] = ACTIONS(1395), + }, + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2536), + [anon_sym_macro_rules_BANG] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_u8] = ACTIONS(2538), + [anon_sym_i8] = ACTIONS(2538), + [anon_sym_u16] = ACTIONS(2538), + [anon_sym_i16] = ACTIONS(2538), + [anon_sym_u32] = ACTIONS(2538), + [anon_sym_i32] = ACTIONS(2538), + [anon_sym_u64] = ACTIONS(2538), + [anon_sym_i64] = ACTIONS(2538), + [anon_sym_u128] = ACTIONS(2538), + [anon_sym_i128] = ACTIONS(2538), + [anon_sym_isize] = ACTIONS(2538), + [anon_sym_usize] = ACTIONS(2538), + [anon_sym_f32] = ACTIONS(2538), + [anon_sym_f64] = ACTIONS(2538), + [anon_sym_bool] = ACTIONS(2538), + [anon_sym_str] = ACTIONS(2538), + [anon_sym_char] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_COLON_COLON] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_async] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_default] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_gen] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_impl] = ACTIONS(2538), + [anon_sym_let] = ACTIONS(2538), + [anon_sym_loop] = ACTIONS(2538), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_mod] = ACTIONS(2538), + [anon_sym_pub] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2538), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_trait] = ACTIONS(2538), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_union] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_use] = ACTIONS(2538), + [anon_sym_while] = ACTIONS(2538), + [anon_sym_extern] = ACTIONS(2538), + [anon_sym_yield] = ACTIONS(2538), + [anon_sym_move] = ACTIONS(2538), + [anon_sym_try] = ACTIONS(2538), + [sym_integer_literal] = ACTIONS(2536), + [aux_sym_string_literal_token1] = ACTIONS(2536), + [sym_char_literal] = ACTIONS(2536), + [anon_sym_true] = ACTIONS(2538), + [anon_sym_false] = ACTIONS(2538), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2538), + [sym_super] = ACTIONS(2538), + [sym_crate] = ACTIONS(2538), + [sym_metavariable] = ACTIONS(2536), + [sym__raw_string_literal_start] = ACTIONS(2536), + [sym_float_literal] = ACTIONS(2536), + }, + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_macro_rules_BANG] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_u8] = ACTIONS(2542), + [anon_sym_i8] = ACTIONS(2542), + [anon_sym_u16] = ACTIONS(2542), + [anon_sym_i16] = ACTIONS(2542), + [anon_sym_u32] = ACTIONS(2542), + [anon_sym_i32] = ACTIONS(2542), + [anon_sym_u64] = ACTIONS(2542), + [anon_sym_i64] = ACTIONS(2542), + [anon_sym_u128] = ACTIONS(2542), + [anon_sym_i128] = ACTIONS(2542), + [anon_sym_isize] = ACTIONS(2542), + [anon_sym_usize] = ACTIONS(2542), + [anon_sym_f32] = ACTIONS(2542), + [anon_sym_f64] = ACTIONS(2542), + [anon_sym_bool] = ACTIONS(2542), + [anon_sym_str] = ACTIONS(2542), + [anon_sym_char] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_DOT_DOT] = ACTIONS(2540), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_async] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_fn] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_gen] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_impl] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_loop] = ACTIONS(2542), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_mod] = ACTIONS(2542), + [anon_sym_pub] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_trait] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_unsafe] = ACTIONS(2542), + [anon_sym_use] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym_yield] = ACTIONS(2542), + [anon_sym_move] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [sym_integer_literal] = ACTIONS(2540), + [aux_sym_string_literal_token1] = ACTIONS(2540), + [sym_char_literal] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2542), + [anon_sym_false] = ACTIONS(2542), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2542), + [sym_super] = ACTIONS(2542), + [sym_crate] = ACTIONS(2542), + [sym_metavariable] = ACTIONS(2540), + [sym__raw_string_literal_start] = ACTIONS(2540), + [sym_float_literal] = ACTIONS(2540), + }, + [STATE(660)] = { + [sym_empty_statement] = STATE(1090), + [sym_macro_definition] = STATE(1090), + [sym_attribute_item] = STATE(1090), + [sym_inner_attribute_item] = STATE(1090), + [sym_mod_item] = STATE(1090), + [sym_foreign_mod_item] = STATE(1090), + [sym_struct_item] = STATE(1090), + [sym_union_item] = STATE(1090), + [sym_enum_item] = STATE(1090), + [sym_extern_crate_declaration] = STATE(1090), + [sym_const_item] = STATE(1090), + [sym_static_item] = STATE(1090), + [sym_type_item] = STATE(1090), + [sym_function_item] = STATE(1090), + [sym_function_signature_item] = STATE(1090), + [sym_function_modifiers] = STATE(3720), + [sym_impl_item] = STATE(1090), + [sym_trait_item] = STATE(1090), + [sym_associated_type] = STATE(1090), + [sym_let_declaration] = STATE(1090), + [sym_use_declaration] = STATE(1090), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(1998), + [sym_bracketed_type] = STATE(3440), + [sym_generic_type_with_turbofish] = STATE(3466), + [sym_macro_invocation] = STATE(1090), + [sym_scoped_identifier] = STATE(3193), + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [aux_sym_declaration_list_repeat1] = STATE(685), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2548), [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), @@ -84336,952 +84718,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [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(659)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(3272), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2829), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1425), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2560), - [sym_identifier] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_macro_rules_BANG] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_u8] = ACTIONS(2562), - [anon_sym_i8] = ACTIONS(2562), - [anon_sym_u16] = ACTIONS(2562), - [anon_sym_i16] = ACTIONS(2562), - [anon_sym_u32] = ACTIONS(2562), - [anon_sym_i32] = ACTIONS(2562), - [anon_sym_u64] = ACTIONS(2562), - [anon_sym_i64] = ACTIONS(2562), - [anon_sym_u128] = ACTIONS(2562), - [anon_sym_i128] = ACTIONS(2562), - [anon_sym_isize] = ACTIONS(2562), - [anon_sym_usize] = ACTIONS(2562), - [anon_sym_f32] = ACTIONS(2562), - [anon_sym_f64] = ACTIONS(2562), - [anon_sym_bool] = ACTIONS(2562), - [anon_sym_str] = ACTIONS(2562), - [anon_sym_char] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2560), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_DOT_DOT] = ACTIONS(2560), - [anon_sym_COLON_COLON] = ACTIONS(2560), - [anon_sym_POUND] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2562), - [anon_sym_async] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2560), [anon_sym_enum] = ACTIONS(2562), - [anon_sym_fn] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_gen] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_impl] = ACTIONS(2562), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_loop] = ACTIONS(2562), - [anon_sym_match] = ACTIONS(2562), - [anon_sym_mod] = ACTIONS(2562), - [anon_sym_pub] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_struct] = ACTIONS(2562), - [anon_sym_trait] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2562), - [anon_sym_union] = ACTIONS(2562), - [anon_sym_unsafe] = ACTIONS(2562), - [anon_sym_use] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_extern] = ACTIONS(2562), - [anon_sym_yield] = ACTIONS(2562), - [anon_sym_move] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [sym_integer_literal] = ACTIONS(2560), - [aux_sym_string_literal_token1] = ACTIONS(2560), - [sym_char_literal] = ACTIONS(2560), - [anon_sym_true] = ACTIONS(2562), - [anon_sym_false] = ACTIONS(2562), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2562), - [sym_super] = ACTIONS(2562), - [sym_crate] = ACTIONS(2562), - [sym_metavariable] = ACTIONS(2560), - [sym__raw_string_literal_start] = ACTIONS(2560), - [sym_float_literal] = ACTIONS(2560), - }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2566), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_macro_rules_BANG] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_u8] = ACTIONS(2566), - [anon_sym_i8] = ACTIONS(2566), - [anon_sym_u16] = ACTIONS(2566), - [anon_sym_i16] = ACTIONS(2566), - [anon_sym_u32] = ACTIONS(2566), - [anon_sym_i32] = ACTIONS(2566), - [anon_sym_u64] = ACTIONS(2566), - [anon_sym_i64] = ACTIONS(2566), - [anon_sym_u128] = ACTIONS(2566), - [anon_sym_i128] = ACTIONS(2566), - [anon_sym_isize] = ACTIONS(2566), - [anon_sym_usize] = ACTIONS(2566), - [anon_sym_f32] = ACTIONS(2566), - [anon_sym_f64] = ACTIONS(2566), - [anon_sym_bool] = ACTIONS(2566), - [anon_sym_str] = ACTIONS(2566), - [anon_sym_char] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_DOT_DOT] = ACTIONS(2564), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_POUND] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2566), - [anon_sym_async] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2566), - [anon_sym_const] = ACTIONS(2566), - [anon_sym_continue] = ACTIONS(2566), - [anon_sym_default] = ACTIONS(2566), - [anon_sym_enum] = ACTIONS(2566), - [anon_sym_fn] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2566), + [anon_sym_fn] = ACTIONS(2564), [anon_sym_gen] = ACTIONS(2566), - [anon_sym_if] = ACTIONS(2566), - [anon_sym_impl] = ACTIONS(2566), - [anon_sym_let] = ACTIONS(2566), - [anon_sym_loop] = ACTIONS(2566), - [anon_sym_match] = ACTIONS(2566), - [anon_sym_mod] = ACTIONS(2566), - [anon_sym_pub] = ACTIONS(2566), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_static] = ACTIONS(2566), - [anon_sym_struct] = ACTIONS(2566), - [anon_sym_trait] = ACTIONS(2566), - [anon_sym_type] = ACTIONS(2566), - [anon_sym_union] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_use] = ACTIONS(2566), - [anon_sym_while] = ACTIONS(2566), - [anon_sym_extern] = ACTIONS(2566), - [anon_sym_yield] = ACTIONS(2566), - [anon_sym_move] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2566), - [sym_integer_literal] = ACTIONS(2564), - [aux_sym_string_literal_token1] = ACTIONS(2564), - [sym_char_literal] = ACTIONS(2564), - [anon_sym_true] = ACTIONS(2566), - [anon_sym_false] = ACTIONS(2566), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2566), - [sym_super] = ACTIONS(2566), - [sym_crate] = ACTIONS(2566), - [sym_metavariable] = ACTIONS(2564), - [sym__raw_string_literal_start] = ACTIONS(2564), - [sym_float_literal] = ACTIONS(2564), - }, - [STATE(662)] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2568), - [sym_identifier] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_macro_rules_BANG] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_RBRACE] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2568), - [anon_sym_u8] = ACTIONS(2570), - [anon_sym_i8] = ACTIONS(2570), - [anon_sym_u16] = ACTIONS(2570), - [anon_sym_i16] = ACTIONS(2570), - [anon_sym_u32] = ACTIONS(2570), - [anon_sym_i32] = ACTIONS(2570), - [anon_sym_u64] = ACTIONS(2570), - [anon_sym_i64] = ACTIONS(2570), - [anon_sym_u128] = ACTIONS(2570), - [anon_sym_i128] = ACTIONS(2570), - [anon_sym_isize] = ACTIONS(2570), - [anon_sym_usize] = ACTIONS(2570), - [anon_sym_f32] = ACTIONS(2570), - [anon_sym_f64] = ACTIONS(2570), - [anon_sym_bool] = ACTIONS(2570), - [anon_sym_str] = ACTIONS(2570), - [anon_sym_char] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_BANG] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2568), - [anon_sym_DOT_DOT] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2568), - [anon_sym_POUND] = ACTIONS(2568), - [anon_sym_SQUOTE] = ACTIONS(2570), - [anon_sym_async] = ACTIONS(2570), - [anon_sym_break] = ACTIONS(2570), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_continue] = ACTIONS(2570), - [anon_sym_default] = ACTIONS(2570), - [anon_sym_enum] = ACTIONS(2570), - [anon_sym_fn] = ACTIONS(2570), - [anon_sym_for] = ACTIONS(2570), - [anon_sym_gen] = ACTIONS(2570), - [anon_sym_if] = ACTIONS(2570), - [anon_sym_impl] = ACTIONS(2570), + [anon_sym_impl] = ACTIONS(2568), [anon_sym_let] = ACTIONS(2570), - [anon_sym_loop] = ACTIONS(2570), - [anon_sym_match] = ACTIONS(2570), - [anon_sym_mod] = ACTIONS(2570), - [anon_sym_pub] = ACTIONS(2570), - [anon_sym_return] = ACTIONS(2570), - [anon_sym_static] = ACTIONS(2570), - [anon_sym_struct] = ACTIONS(2570), - [anon_sym_trait] = ACTIONS(2570), - [anon_sym_type] = ACTIONS(2570), - [anon_sym_union] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(2570), - [anon_sym_use] = ACTIONS(2570), - [anon_sym_while] = ACTIONS(2570), - [anon_sym_extern] = ACTIONS(2570), - [anon_sym_yield] = ACTIONS(2570), - [anon_sym_move] = ACTIONS(2570), - [anon_sym_try] = ACTIONS(2570), - [sym_integer_literal] = ACTIONS(2568), - [aux_sym_string_literal_token1] = ACTIONS(2568), - [sym_char_literal] = ACTIONS(2568), - [anon_sym_true] = ACTIONS(2570), - [anon_sym_false] = ACTIONS(2570), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2570), - [sym_super] = ACTIONS(2570), - [sym_crate] = ACTIONS(2570), - [sym_metavariable] = ACTIONS(2568), - [sym__raw_string_literal_start] = ACTIONS(2568), - [sym_float_literal] = ACTIONS(2568), - }, - [STATE(663)] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_identifier] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_macro_rules_BANG] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2572), - [anon_sym_u8] = ACTIONS(2574), - [anon_sym_i8] = ACTIONS(2574), - [anon_sym_u16] = ACTIONS(2574), - [anon_sym_i16] = ACTIONS(2574), - [anon_sym_u32] = ACTIONS(2574), - [anon_sym_i32] = ACTIONS(2574), - [anon_sym_u64] = ACTIONS(2574), - [anon_sym_i64] = ACTIONS(2574), - [anon_sym_u128] = ACTIONS(2574), - [anon_sym_i128] = ACTIONS(2574), - [anon_sym_isize] = ACTIONS(2574), - [anon_sym_usize] = ACTIONS(2574), - [anon_sym_f32] = ACTIONS(2574), - [anon_sym_f64] = ACTIONS(2574), - [anon_sym_bool] = ACTIONS(2574), - [anon_sym_str] = ACTIONS(2574), - [anon_sym_char] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2572), - [anon_sym_DOT_DOT] = ACTIONS(2572), - [anon_sym_COLON_COLON] = ACTIONS(2572), - [anon_sym_POUND] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), - [anon_sym_fn] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_gen] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_impl] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_loop] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2574), - [anon_sym_pub] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), + [anon_sym_mod] = ACTIONS(2572), + [anon_sym_pub] = ACTIONS(69), [anon_sym_static] = ACTIONS(2574), - [anon_sym_struct] = ACTIONS(2574), - [anon_sym_trait] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_union] = ACTIONS(2574), - [anon_sym_unsafe] = ACTIONS(2574), - [anon_sym_use] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_extern] = ACTIONS(2574), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_move] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [sym_integer_literal] = ACTIONS(2572), - [aux_sym_string_literal_token1] = ACTIONS(2572), - [sym_char_literal] = ACTIONS(2572), - [anon_sym_true] = ACTIONS(2574), - [anon_sym_false] = ACTIONS(2574), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_crate] = ACTIONS(2574), - [sym_metavariable] = ACTIONS(2572), - [sym__raw_string_literal_start] = ACTIONS(2572), - [sym_float_literal] = ACTIONS(2572), - }, - [STATE(664)] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(2576), - [sym_identifier] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_macro_rules_BANG] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_u8] = ACTIONS(2578), - [anon_sym_i8] = ACTIONS(2578), - [anon_sym_u16] = ACTIONS(2578), - [anon_sym_i16] = ACTIONS(2578), - [anon_sym_u32] = ACTIONS(2578), - [anon_sym_i32] = ACTIONS(2578), - [anon_sym_u64] = ACTIONS(2578), - [anon_sym_i64] = ACTIONS(2578), - [anon_sym_u128] = ACTIONS(2578), - [anon_sym_i128] = ACTIONS(2578), - [anon_sym_isize] = ACTIONS(2578), - [anon_sym_usize] = ACTIONS(2578), - [anon_sym_f32] = ACTIONS(2578), - [anon_sym_f64] = ACTIONS(2578), - [anon_sym_bool] = ACTIONS(2578), - [anon_sym_str] = ACTIONS(2578), - [anon_sym_char] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2576), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2576), - [anon_sym_DOT_DOT] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2576), - [anon_sym_POUND] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [anon_sym_async] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), - [anon_sym_fn] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_gen] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_impl] = ACTIONS(2578), - [anon_sym_let] = ACTIONS(2578), - [anon_sym_loop] = ACTIONS(2578), - [anon_sym_match] = ACTIONS(2578), - [anon_sym_mod] = ACTIONS(2578), - [anon_sym_pub] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_struct] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(2576), [anon_sym_trait] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2578), - [anon_sym_union] = ACTIONS(2578), - [anon_sym_unsafe] = ACTIONS(2578), - [anon_sym_use] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_extern] = ACTIONS(2578), - [anon_sym_yield] = ACTIONS(2578), - [anon_sym_move] = ACTIONS(2578), - [anon_sym_try] = ACTIONS(2578), - [sym_integer_literal] = ACTIONS(2576), - [aux_sym_string_literal_token1] = ACTIONS(2576), - [sym_char_literal] = ACTIONS(2576), - [anon_sym_true] = ACTIONS(2578), - [anon_sym_false] = ACTIONS(2578), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2578), - [sym_super] = ACTIONS(2578), - [sym_crate] = ACTIONS(2578), - [sym_metavariable] = ACTIONS(2576), - [sym__raw_string_literal_start] = ACTIONS(2576), - [sym_float_literal] = ACTIONS(2576), - }, - [STATE(665)] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [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_type] = ACTIONS(2580), [anon_sym_union] = ACTIONS(2582), - [anon_sym_unsafe] = ACTIONS(2582), - [anon_sym_use] = ACTIONS(2582), - [anon_sym_while] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym_yield] = ACTIONS(2582), - [anon_sym_move] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2582), - [sym_integer_literal] = ACTIONS(2580), - [aux_sym_string_literal_token1] = ACTIONS(2580), - [sym_char_literal] = ACTIONS(2580), - [anon_sym_true] = ACTIONS(2582), - [anon_sym_false] = ACTIONS(2582), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2582), - [sym_super] = ACTIONS(2582), - [sym_crate] = ACTIONS(2582), - [sym_metavariable] = ACTIONS(2580), - [sym__raw_string_literal_start] = ACTIONS(2580), - [sym_float_literal] = ACTIONS(2580), - }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [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_unsafe] = ACTIONS(2584), [anon_sym_use] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_extern] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_move] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [sym_integer_literal] = ACTIONS(2584), - [aux_sym_string_literal_token1] = ACTIONS(2584), - [sym_char_literal] = ACTIONS(2584), - [anon_sym_true] = ACTIONS(2586), - [anon_sym_false] = ACTIONS(2586), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_crate] = ACTIONS(2586), - [sym_metavariable] = ACTIONS(2584), - [sym__raw_string_literal_start] = ACTIONS(2584), - [sym_float_literal] = ACTIONS(2584), - }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [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_extern] = ACTIONS(2588), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2590), [sym_super] = ACTIONS(2590), - [sym_crate] = ACTIONS(2590), - [sym_metavariable] = ACTIONS(2588), - [sym__raw_string_literal_start] = ACTIONS(2588), - [sym_float_literal] = ACTIONS(2588), - }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [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), + [sym_crate] = ACTIONS(2592), + [sym_metavariable] = ACTIONS(2594), }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), [ts_builtin_sym_end] = ACTIONS(2596), [sym_identifier] = ACTIONS(2598), [anon_sym_SEMI] = ACTIONS(2596), @@ -85360,39 +84827,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2596), [sym_float_literal] = ACTIONS(2596), }, - [STATE(670)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(3272), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2829), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), + }, + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [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), + }, + [STATE(664)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(3252), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2604), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -85411,120 +85040,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1449), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1455), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [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), + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), [ts_builtin_sym_end] = ACTIONS(2606), [sym_identifier] = ACTIONS(2608), [anon_sym_SEMI] = ACTIONS(2606), @@ -85603,9 +85151,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2606), [sym_float_literal] = ACTIONS(2606), }, - [STATE(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2610), [sym_identifier] = ACTIONS(2612), [anon_sym_SEMI] = ACTIONS(2610), @@ -85684,9 +85232,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2610), [sym_float_literal] = ACTIONS(2610), }, - [STATE(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2614), [sym_identifier] = ACTIONS(2616), [anon_sym_SEMI] = ACTIONS(2614), @@ -85765,9 +85313,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2614), [sym_float_literal] = ACTIONS(2614), }, - [STATE(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [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_STAR] = 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(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_SQUOTE] = 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_yield] = ACTIONS(1415), + [anon_sym_move] = ACTIONS(1415), + [anon_sym_try] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), + }, + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2618), [sym_identifier] = ACTIONS(2620), [anon_sym_SEMI] = ACTIONS(2618), @@ -85846,9 +85475,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2618), [sym_float_literal] = ACTIONS(2618), }, - [STATE(676)] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(1391), + [sym_identifier] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_macro_rules_BANG] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_u8] = ACTIONS(1393), + [anon_sym_i8] = ACTIONS(1393), + [anon_sym_u16] = ACTIONS(1393), + [anon_sym_i16] = ACTIONS(1393), + [anon_sym_u32] = ACTIONS(1393), + [anon_sym_i32] = ACTIONS(1393), + [anon_sym_u64] = ACTIONS(1393), + [anon_sym_i64] = ACTIONS(1393), + [anon_sym_u128] = ACTIONS(1393), + [anon_sym_i128] = ACTIONS(1393), + [anon_sym_isize] = ACTIONS(1393), + [anon_sym_usize] = ACTIONS(1393), + [anon_sym_f32] = ACTIONS(1393), + [anon_sym_f64] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_str] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_async] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_gen] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_impl] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1393), + [anon_sym_match] = ACTIONS(1393), + [anon_sym_mod] = ACTIONS(1393), + [anon_sym_pub] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_trait] = ACTIONS(1393), + [anon_sym_type] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_unsafe] = ACTIONS(1393), + [anon_sym_use] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_move] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1391), + [aux_sym_string_literal_token1] = ACTIONS(1391), + [sym_char_literal] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1393), + [sym_crate] = ACTIONS(1393), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1391), + [sym_float_literal] = ACTIONS(1391), + }, + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_macro_rules_BANG] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_u8] = ACTIONS(1389), + [anon_sym_i8] = ACTIONS(1389), + [anon_sym_u16] = ACTIONS(1389), + [anon_sym_i16] = ACTIONS(1389), + [anon_sym_u32] = ACTIONS(1389), + [anon_sym_i32] = ACTIONS(1389), + [anon_sym_u64] = ACTIONS(1389), + [anon_sym_i64] = ACTIONS(1389), + [anon_sym_u128] = ACTIONS(1389), + [anon_sym_i128] = ACTIONS(1389), + [anon_sym_isize] = ACTIONS(1389), + [anon_sym_usize] = ACTIONS(1389), + [anon_sym_f32] = ACTIONS(1389), + [anon_sym_f64] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_str] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_impl] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_loop] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_mod] = ACTIONS(1389), + [anon_sym_pub] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_trait] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1389), + [anon_sym_move] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1387), + [aux_sym_string_literal_token1] = ACTIONS(1387), + [sym_char_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1387), + [sym__raw_string_literal_start] = ACTIONS(1387), + [sym_float_literal] = ACTIONS(1387), + }, + [STATE(672)] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_macro_rules_BANG] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1385), + [anon_sym_i8] = ACTIONS(1385), + [anon_sym_u16] = ACTIONS(1385), + [anon_sym_i16] = ACTIONS(1385), + [anon_sym_u32] = ACTIONS(1385), + [anon_sym_i32] = ACTIONS(1385), + [anon_sym_u64] = ACTIONS(1385), + [anon_sym_i64] = ACTIONS(1385), + [anon_sym_u128] = ACTIONS(1385), + [anon_sym_i128] = ACTIONS(1385), + [anon_sym_isize] = ACTIONS(1385), + [anon_sym_usize] = ACTIONS(1385), + [anon_sym_f32] = ACTIONS(1385), + [anon_sym_f64] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_str] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1385), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1385), + [anon_sym_mod] = ACTIONS(1385), + [anon_sym_pub] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_trait] = ACTIONS(1385), + [anon_sym_type] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_use] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym_yield] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1385), + [anon_sym_try] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1383), + [aux_sym_string_literal_token1] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_crate] = ACTIONS(1385), + [sym_metavariable] = ACTIONS(1383), + [sym__raw_string_literal_start] = ACTIONS(1383), + [sym_float_literal] = ACTIONS(1383), + }, + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), [ts_builtin_sym_end] = ACTIONS(2622), [sym_identifier] = ACTIONS(2624), [anon_sym_SEMI] = ACTIONS(2622), @@ -85927,9 +85799,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2622), [sym_float_literal] = ACTIONS(2622), }, - [STATE(677)] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2626), [sym_identifier] = ACTIONS(2628), [anon_sym_SEMI] = ACTIONS(2626), @@ -86008,9 +85880,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2626), [sym_float_literal] = ACTIONS(2626), }, - [STATE(678)] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2630), [sym_identifier] = ACTIONS(2632), [anon_sym_SEMI] = ACTIONS(2630), @@ -86089,9 +85961,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2630), [sym_float_literal] = ACTIONS(2630), }, - [STATE(679)] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2634), [sym_identifier] = ACTIONS(2636), [anon_sym_SEMI] = ACTIONS(2634), @@ -86170,9 +86042,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2634), [sym_float_literal] = ACTIONS(2634), }, - [STATE(680)] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2638), [sym_identifier] = ACTIONS(2640), [anon_sym_SEMI] = ACTIONS(2638), @@ -86251,9 +86123,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2638), [sym_float_literal] = ACTIONS(2638), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2642), [sym_identifier] = ACTIONS(2644), [anon_sym_SEMI] = ACTIONS(2642), @@ -86332,9 +86204,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2642), [sym_float_literal] = ACTIONS(2642), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [STATE(679)] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2646), [sym_identifier] = ACTIONS(2648), [anon_sym_SEMI] = ACTIONS(2646), @@ -86413,9 +86285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2646), [sym_float_literal] = ACTIONS(2646), }, - [STATE(683)] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2650), [sym_identifier] = ACTIONS(2652), [anon_sym_SEMI] = ACTIONS(2650), @@ -86494,9 +86366,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2650), [sym_float_literal] = ACTIONS(2650), }, - [STATE(684)] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2654), [sym_identifier] = ACTIONS(2656), [anon_sym_SEMI] = ACTIONS(2654), @@ -86575,9 +86447,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2654), [sym_float_literal] = ACTIONS(2654), }, - [STATE(685)] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2658), [sym_identifier] = ACTIONS(2660), [anon_sym_SEMI] = ACTIONS(2658), @@ -86656,9 +86528,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(686)] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2662), [sym_identifier] = ACTIONS(2664), [anon_sym_SEMI] = ACTIONS(2662), @@ -86737,9 +86609,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(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [STATE(684)] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2666), [sym_identifier] = ACTIONS(2668), [anon_sym_SEMI] = ACTIONS(2666), @@ -86818,171 +86690,171 @@ 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(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2670), - [sym_identifier] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_macro_rules_BANG] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_u8] = ACTIONS(2672), - [anon_sym_i8] = ACTIONS(2672), - [anon_sym_u16] = ACTIONS(2672), - [anon_sym_i16] = ACTIONS(2672), - [anon_sym_u32] = ACTIONS(2672), - [anon_sym_i32] = ACTIONS(2672), - [anon_sym_u64] = ACTIONS(2672), - [anon_sym_i64] = ACTIONS(2672), - [anon_sym_u128] = ACTIONS(2672), - [anon_sym_i128] = ACTIONS(2672), - [anon_sym_isize] = ACTIONS(2672), - [anon_sym_usize] = ACTIONS(2672), - [anon_sym_f32] = ACTIONS(2672), - [anon_sym_f64] = ACTIONS(2672), - [anon_sym_bool] = ACTIONS(2672), - [anon_sym_str] = ACTIONS(2672), - [anon_sym_char] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym_DOT_DOT] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_default] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_gen] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_impl] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2672), - [anon_sym_loop] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_mod] = ACTIONS(2672), - [anon_sym_pub] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2672), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_trait] = ACTIONS(2672), - [anon_sym_type] = ACTIONS(2672), - [anon_sym_union] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_use] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_yield] = ACTIONS(2672), - [anon_sym_move] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [sym_integer_literal] = ACTIONS(2670), - [aux_sym_string_literal_token1] = ACTIONS(2670), - [sym_char_literal] = ACTIONS(2670), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2672), - [sym_super] = ACTIONS(2672), - [sym_crate] = ACTIONS(2672), - [sym_metavariable] = ACTIONS(2670), - [sym__raw_string_literal_start] = ACTIONS(2670), - [sym_float_literal] = ACTIONS(2670), - }, - [STATE(689)] = { - [sym_empty_statement] = STATE(1327), - [sym_macro_definition] = STATE(1327), - [sym_attribute_item] = STATE(1327), - [sym_inner_attribute_item] = STATE(1327), - [sym_mod_item] = STATE(1327), - [sym_foreign_mod_item] = STATE(1327), - [sym_struct_item] = STATE(1327), - [sym_union_item] = STATE(1327), - [sym_enum_item] = STATE(1327), - [sym_extern_crate_declaration] = STATE(1327), - [sym_const_item] = STATE(1327), - [sym_static_item] = STATE(1327), - [sym_type_item] = STATE(1327), - [sym_function_item] = STATE(1327), - [sym_function_signature_item] = STATE(1327), - [sym_function_modifiers] = STATE(3675), - [sym_impl_item] = STATE(1327), - [sym_trait_item] = STATE(1327), - [sym_associated_type] = STATE(1327), - [sym_let_declaration] = STATE(1327), - [sym_use_declaration] = STATE(1327), - [sym_extern_modifier] = STATE(2174), - [sym_visibility_modifier] = STATE(1971), - [sym_bracketed_type] = STATE(3402), - [sym_generic_type_with_turbofish] = STATE(3427), - [sym_macro_invocation] = STATE(1327), - [sym_scoped_identifier] = STATE(3358), - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [aux_sym_declaration_list_repeat1] = STATE(555), + [STATE(685)] = { + [sym_empty_statement] = STATE(1090), + [sym_macro_definition] = STATE(1090), + [sym_attribute_item] = STATE(1090), + [sym_inner_attribute_item] = STATE(1090), + [sym_mod_item] = STATE(1090), + [sym_foreign_mod_item] = STATE(1090), + [sym_struct_item] = STATE(1090), + [sym_union_item] = STATE(1090), + [sym_enum_item] = STATE(1090), + [sym_extern_crate_declaration] = STATE(1090), + [sym_const_item] = STATE(1090), + [sym_static_item] = STATE(1090), + [sym_type_item] = STATE(1090), + [sym_function_item] = STATE(1090), + [sym_function_signature_item] = STATE(1090), + [sym_function_modifiers] = STATE(3720), + [sym_impl_item] = STATE(1090), + [sym_trait_item] = STATE(1090), + [sym_associated_type] = STATE(1090), + [sym_let_declaration] = STATE(1090), + [sym_use_declaration] = STATE(1090), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(1998), + [sym_bracketed_type] = STATE(3440), + [sym_generic_type_with_turbofish] = STATE(3466), + [sym_macro_invocation] = STATE(1090), + [sym_scoped_identifier] = STATE(3193), + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [aux_sym_declaration_list_repeat1] = STATE(641), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2674), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2190), - [anon_sym_gen] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2670), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_fn] = ACTIONS(2564), + [anon_sym_gen] = ACTIONS(2566), + [anon_sym_impl] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2572), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2202), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2206), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_trait] = ACTIONS(2578), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2584), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2588), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2218), - [sym_metavariable] = ACTIONS(2220), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2592), + [sym_metavariable] = ACTIONS(2594), }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [STATE(686)] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(2672), + [sym_identifier] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2672), + [anon_sym_macro_rules_BANG] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2674), + [anon_sym_i8] = ACTIONS(2674), + [anon_sym_u16] = ACTIONS(2674), + [anon_sym_i16] = ACTIONS(2674), + [anon_sym_u32] = ACTIONS(2674), + [anon_sym_i32] = ACTIONS(2674), + [anon_sym_u64] = ACTIONS(2674), + [anon_sym_i64] = ACTIONS(2674), + [anon_sym_u128] = ACTIONS(2674), + [anon_sym_i128] = ACTIONS(2674), + [anon_sym_isize] = ACTIONS(2674), + [anon_sym_usize] = ACTIONS(2674), + [anon_sym_f32] = ACTIONS(2674), + [anon_sym_f64] = ACTIONS(2674), + [anon_sym_bool] = ACTIONS(2674), + [anon_sym_str] = ACTIONS(2674), + [anon_sym_char] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_SQUOTE] = ACTIONS(2674), + [anon_sym_async] = ACTIONS(2674), + [anon_sym_break] = ACTIONS(2674), + [anon_sym_const] = ACTIONS(2674), + [anon_sym_continue] = ACTIONS(2674), + [anon_sym_default] = ACTIONS(2674), + [anon_sym_enum] = ACTIONS(2674), + [anon_sym_fn] = ACTIONS(2674), + [anon_sym_for] = ACTIONS(2674), + [anon_sym_gen] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2674), + [anon_sym_impl] = ACTIONS(2674), + [anon_sym_let] = ACTIONS(2674), + [anon_sym_loop] = ACTIONS(2674), + [anon_sym_match] = ACTIONS(2674), + [anon_sym_mod] = ACTIONS(2674), + [anon_sym_pub] = ACTIONS(2674), + [anon_sym_return] = ACTIONS(2674), + [anon_sym_static] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2674), + [anon_sym_trait] = ACTIONS(2674), + [anon_sym_type] = ACTIONS(2674), + [anon_sym_union] = ACTIONS(2674), + [anon_sym_unsafe] = ACTIONS(2674), + [anon_sym_use] = ACTIONS(2674), + [anon_sym_while] = ACTIONS(2674), + [anon_sym_extern] = ACTIONS(2674), + [anon_sym_yield] = ACTIONS(2674), + [anon_sym_move] = ACTIONS(2674), + [anon_sym_try] = ACTIONS(2674), + [sym_integer_literal] = ACTIONS(2672), + [aux_sym_string_literal_token1] = ACTIONS(2672), + [sym_char_literal] = ACTIONS(2672), + [anon_sym_true] = ACTIONS(2674), + [anon_sym_false] = ACTIONS(2674), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2674), + [sym_super] = ACTIONS(2674), + [sym_crate] = ACTIONS(2674), + [sym_metavariable] = ACTIONS(2672), + [sym__raw_string_literal_start] = ACTIONS(2672), + [sym_float_literal] = ACTIONS(2672), + }, + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2676), [sym_identifier] = ACTIONS(2678), [anon_sym_SEMI] = ACTIONS(2676), @@ -87061,414 +86933,495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2676), [sym_float_literal] = ACTIONS(2676), }, + [STATE(688)] = { + [sym_empty_statement] = STATE(1090), + [sym_macro_definition] = STATE(1090), + [sym_attribute_item] = STATE(1090), + [sym_inner_attribute_item] = STATE(1090), + [sym_mod_item] = STATE(1090), + [sym_foreign_mod_item] = STATE(1090), + [sym_struct_item] = STATE(1090), + [sym_union_item] = STATE(1090), + [sym_enum_item] = STATE(1090), + [sym_extern_crate_declaration] = STATE(1090), + [sym_const_item] = STATE(1090), + [sym_static_item] = STATE(1090), + [sym_type_item] = STATE(1090), + [sym_function_item] = STATE(1090), + [sym_function_signature_item] = STATE(1090), + [sym_function_modifiers] = STATE(3720), + [sym_impl_item] = STATE(1090), + [sym_trait_item] = STATE(1090), + [sym_associated_type] = STATE(1090), + [sym_let_declaration] = STATE(1090), + [sym_use_declaration] = STATE(1090), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(1998), + [sym_bracketed_type] = STATE(3440), + [sym_generic_type_with_turbofish] = STATE(3466), + [sym_macro_invocation] = STATE(1090), + [sym_scoped_identifier] = STATE(3193), + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [aux_sym_declaration_list_repeat1] = STATE(693), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2680), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_fn] = ACTIONS(2564), + [anon_sym_gen] = ACTIONS(2566), + [anon_sym_impl] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2572), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_trait] = ACTIONS(2578), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2584), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2588), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2592), + [sym_metavariable] = ACTIONS(2594), + }, + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym_macro_rules_BANG] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_u8] = ACTIONS(2684), + [anon_sym_i8] = ACTIONS(2684), + [anon_sym_u16] = ACTIONS(2684), + [anon_sym_i16] = ACTIONS(2684), + [anon_sym_u32] = ACTIONS(2684), + [anon_sym_i32] = ACTIONS(2684), + [anon_sym_u64] = ACTIONS(2684), + [anon_sym_i64] = ACTIONS(2684), + [anon_sym_u128] = ACTIONS(2684), + [anon_sym_i128] = ACTIONS(2684), + [anon_sym_isize] = ACTIONS(2684), + [anon_sym_usize] = ACTIONS(2684), + [anon_sym_f32] = ACTIONS(2684), + [anon_sym_f64] = ACTIONS(2684), + [anon_sym_bool] = ACTIONS(2684), + [anon_sym_str] = ACTIONS(2684), + [anon_sym_char] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2682), + [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_async] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_gen] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_impl] = ACTIONS(2684), + [anon_sym_let] = ACTIONS(2684), + [anon_sym_loop] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_mod] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_trait] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_use] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym_yield] = ACTIONS(2684), + [anon_sym_move] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [sym_integer_literal] = ACTIONS(2682), + [aux_sym_string_literal_token1] = ACTIONS(2682), + [sym_char_literal] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2684), + [sym_super] = ACTIONS(2684), + [sym_crate] = ACTIONS(2684), + [sym_metavariable] = ACTIONS(2682), + [sym__raw_string_literal_start] = ACTIONS(2682), + [sym_float_literal] = ACTIONS(2682), + }, + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_macro_rules_BANG] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_u8] = ACTIONS(2688), + [anon_sym_i8] = ACTIONS(2688), + [anon_sym_u16] = ACTIONS(2688), + [anon_sym_i16] = ACTIONS(2688), + [anon_sym_u32] = ACTIONS(2688), + [anon_sym_i32] = ACTIONS(2688), + [anon_sym_u64] = ACTIONS(2688), + [anon_sym_i64] = ACTIONS(2688), + [anon_sym_u128] = ACTIONS(2688), + [anon_sym_i128] = ACTIONS(2688), + [anon_sym_isize] = ACTIONS(2688), + [anon_sym_usize] = ACTIONS(2688), + [anon_sym_f32] = ACTIONS(2688), + [anon_sym_f64] = ACTIONS(2688), + [anon_sym_bool] = ACTIONS(2688), + [anon_sym_str] = ACTIONS(2688), + [anon_sym_char] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_DOT_DOT] = ACTIONS(2686), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_gen] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_impl] = ACTIONS(2688), + [anon_sym_let] = ACTIONS(2688), + [anon_sym_loop] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_mod] = ACTIONS(2688), + [anon_sym_pub] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_trait] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_use] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_move] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [sym_integer_literal] = ACTIONS(2686), + [aux_sym_string_literal_token1] = ACTIONS(2686), + [sym_char_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2688), + [anon_sym_false] = ACTIONS(2688), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2688), + [sym_super] = ACTIONS(2688), + [sym_crate] = ACTIONS(2688), + [sym_metavariable] = ACTIONS(2686), + [sym__raw_string_literal_start] = ACTIONS(2686), + [sym_float_literal] = ACTIONS(2686), + }, [STATE(691)] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [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), + [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(692)] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [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), + [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(693)] = { + [sym_empty_statement] = STATE(1090), + [sym_macro_definition] = STATE(1090), + [sym_attribute_item] = STATE(1090), + [sym_inner_attribute_item] = STATE(1090), + [sym_mod_item] = STATE(1090), + [sym_foreign_mod_item] = STATE(1090), + [sym_struct_item] = STATE(1090), + [sym_union_item] = STATE(1090), + [sym_enum_item] = STATE(1090), + [sym_extern_crate_declaration] = STATE(1090), + [sym_const_item] = STATE(1090), + [sym_static_item] = STATE(1090), + [sym_type_item] = STATE(1090), + [sym_function_item] = STATE(1090), + [sym_function_signature_item] = STATE(1090), + [sym_function_modifiers] = STATE(3720), + [sym_impl_item] = STATE(1090), + [sym_trait_item] = STATE(1090), + [sym_associated_type] = STATE(1090), + [sym_let_declaration] = STATE(1090), + [sym_use_declaration] = STATE(1090), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(1998), + [sym_bracketed_type] = STATE(3440), + [sym_generic_type_with_turbofish] = STATE(3466), + [sym_macro_invocation] = STATE(1090), + [sym_scoped_identifier] = STATE(3193), [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [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), + [aux_sym_declaration_list_repeat1] = STATE(641), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2698), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_fn] = ACTIONS(2564), + [anon_sym_gen] = ACTIONS(2566), + [anon_sym_impl] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2572), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_trait] = ACTIONS(2578), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2584), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2588), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2592), + [sym_metavariable] = ACTIONS(2594), }, [STATE(694)] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [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(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_macro_rules_BANG] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_u8] = ACTIONS(2698), - [anon_sym_i8] = ACTIONS(2698), - [anon_sym_u16] = ACTIONS(2698), - [anon_sym_i16] = ACTIONS(2698), - [anon_sym_u32] = ACTIONS(2698), - [anon_sym_i32] = ACTIONS(2698), - [anon_sym_u64] = ACTIONS(2698), - [anon_sym_i64] = ACTIONS(2698), - [anon_sym_u128] = ACTIONS(2698), - [anon_sym_i128] = ACTIONS(2698), - [anon_sym_isize] = ACTIONS(2698), - [anon_sym_usize] = ACTIONS(2698), - [anon_sym_f32] = ACTIONS(2698), - [anon_sym_f64] = ACTIONS(2698), - [anon_sym_bool] = ACTIONS(2698), - [anon_sym_str] = ACTIONS(2698), - [anon_sym_char] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_DOT_DOT] = ACTIONS(2696), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2698), - [anon_sym_async] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_fn] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_gen] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_impl] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_loop] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2698), - [anon_sym_mod] = ACTIONS(2698), - [anon_sym_pub] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_trait] = ACTIONS(2698), - [anon_sym_type] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_unsafe] = ACTIONS(2698), - [anon_sym_use] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_yield] = ACTIONS(2698), - [anon_sym_move] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [sym_integer_literal] = ACTIONS(2696), - [aux_sym_string_literal_token1] = ACTIONS(2696), - [sym_char_literal] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2698), - [sym_super] = ACTIONS(2698), - [sym_crate] = ACTIONS(2698), - [sym_metavariable] = ACTIONS(2696), - [sym__raw_string_literal_start] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2696), - }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2700), [sym_identifier] = ACTIONS(2702), [anon_sym_SEMI] = ACTIONS(2700), @@ -87547,9 +87500,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2700), [sym_float_literal] = ACTIONS(2700), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2704), [sym_identifier] = ACTIONS(2706), [anon_sym_SEMI] = ACTIONS(2704), @@ -87621,340 +87574,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(2706), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_crate] = ACTIONS(2706), - [sym_metavariable] = ACTIONS(2704), - [sym__raw_string_literal_start] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), + [sym_self] = ACTIONS(2706), + [sym_super] = ACTIONS(2706), + [sym_crate] = ACTIONS(2706), + [sym_metavariable] = ACTIONS(2704), + [sym__raw_string_literal_start] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2704), + }, + [STATE(696)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(3252), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_macro_rules_BANG] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u128] = ACTIONS(2712), + [anon_sym_i128] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_str] = ACTIONS(2712), + [anon_sym_char] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_fn] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_gen] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_impl] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_loop] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_mod] = ACTIONS(2712), + [anon_sym_pub] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_trait] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(2712), + [anon_sym_use] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_move] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [sym_integer_literal] = ACTIONS(2710), + [aux_sym_string_literal_token1] = ACTIONS(2710), + [sym_char_literal] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2712), + [sym_super] = ACTIONS(2712), + [sym_crate] = ACTIONS(2712), + [sym_metavariable] = ACTIONS(2710), + [sym__raw_string_literal_start] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), }, [STATE(698)] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_macro_rules_BANG] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_u8] = ACTIONS(2710), - [anon_sym_i8] = ACTIONS(2710), - [anon_sym_u16] = ACTIONS(2710), - [anon_sym_i16] = ACTIONS(2710), - [anon_sym_u32] = ACTIONS(2710), - [anon_sym_i32] = ACTIONS(2710), - [anon_sym_u64] = ACTIONS(2710), - [anon_sym_i64] = ACTIONS(2710), - [anon_sym_u128] = ACTIONS(2710), - [anon_sym_i128] = ACTIONS(2710), - [anon_sym_isize] = ACTIONS(2710), - [anon_sym_usize] = ACTIONS(2710), - [anon_sym_f32] = ACTIONS(2710), - [anon_sym_f64] = ACTIONS(2710), - [anon_sym_bool] = ACTIONS(2710), - [anon_sym_str] = ACTIONS(2710), - [anon_sym_char] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2708), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2708), - [anon_sym_COLON_COLON] = ACTIONS(2708), - [anon_sym_POUND] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_async] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_gen] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_impl] = ACTIONS(2710), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_loop] = ACTIONS(2710), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_mod] = ACTIONS(2710), - [anon_sym_pub] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_trait] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_use] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym_yield] = ACTIONS(2710), - [anon_sym_move] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [sym_integer_literal] = ACTIONS(2708), - [aux_sym_string_literal_token1] = ACTIONS(2708), - [sym_char_literal] = ACTIONS(2708), - [anon_sym_true] = ACTIONS(2710), - [anon_sym_false] = ACTIONS(2710), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2710), - [sym_super] = ACTIONS(2710), - [sym_crate] = ACTIONS(2710), - [sym_metavariable] = ACTIONS(2708), - [sym__raw_string_literal_start] = ACTIONS(2708), - [sym_float_literal] = ACTIONS(2708), + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_macro_rules_BANG] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u128] = ACTIONS(2716), + [anon_sym_i128] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_str] = ACTIONS(2716), + [anon_sym_char] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_DOT_DOT] = ACTIONS(2714), + [anon_sym_COLON_COLON] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_async] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_fn] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_gen] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_impl] = ACTIONS(2716), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_loop] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_mod] = ACTIONS(2716), + [anon_sym_pub] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_trait] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_use] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_move] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [sym_integer_literal] = ACTIONS(2714), + [aux_sym_string_literal_token1] = ACTIONS(2714), + [sym_char_literal] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2716), + [sym_super] = ACTIONS(2716), + [sym_crate] = ACTIONS(2716), + [sym_metavariable] = ACTIONS(2714), + [sym__raw_string_literal_start] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), }, [STATE(699)] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_macro_rules_BANG] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_u8] = ACTIONS(2714), - [anon_sym_i8] = ACTIONS(2714), - [anon_sym_u16] = ACTIONS(2714), - [anon_sym_i16] = ACTIONS(2714), - [anon_sym_u32] = ACTIONS(2714), - [anon_sym_i32] = ACTIONS(2714), - [anon_sym_u64] = ACTIONS(2714), - [anon_sym_i64] = ACTIONS(2714), - [anon_sym_u128] = ACTIONS(2714), - [anon_sym_i128] = ACTIONS(2714), - [anon_sym_isize] = ACTIONS(2714), - [anon_sym_usize] = ACTIONS(2714), - [anon_sym_f32] = ACTIONS(2714), - [anon_sym_f64] = ACTIONS(2714), - [anon_sym_bool] = ACTIONS(2714), - [anon_sym_str] = ACTIONS(2714), - [anon_sym_char] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2712), - [anon_sym_DOT_DOT] = ACTIONS(2712), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2714), - [anon_sym_async] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_gen] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_impl] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_loop] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_mod] = ACTIONS(2714), - [anon_sym_pub] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_trait] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_union] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_extern] = ACTIONS(2714), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_move] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [sym_integer_literal] = ACTIONS(2712), - [aux_sym_string_literal_token1] = ACTIONS(2712), - [sym_char_literal] = ACTIONS(2712), - [anon_sym_true] = ACTIONS(2714), - [anon_sym_false] = ACTIONS(2714), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2714), - [sym_super] = ACTIONS(2714), - [sym_crate] = ACTIONS(2714), - [sym_metavariable] = ACTIONS(2712), - [sym__raw_string_literal_start] = ACTIONS(2712), - [sym_float_literal] = ACTIONS(2712), + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_macro_rules_BANG] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_u8] = ACTIONS(2720), + [anon_sym_i8] = ACTIONS(2720), + [anon_sym_u16] = ACTIONS(2720), + [anon_sym_i16] = ACTIONS(2720), + [anon_sym_u32] = ACTIONS(2720), + [anon_sym_i32] = ACTIONS(2720), + [anon_sym_u64] = ACTIONS(2720), + [anon_sym_i64] = ACTIONS(2720), + [anon_sym_u128] = ACTIONS(2720), + [anon_sym_i128] = ACTIONS(2720), + [anon_sym_isize] = ACTIONS(2720), + [anon_sym_usize] = ACTIONS(2720), + [anon_sym_f32] = ACTIONS(2720), + [anon_sym_f64] = ACTIONS(2720), + [anon_sym_bool] = ACTIONS(2720), + [anon_sym_str] = ACTIONS(2720), + [anon_sym_char] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(2718), + [anon_sym_COLON_COLON] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_async] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_fn] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_gen] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_impl] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_loop] = ACTIONS(2720), + [anon_sym_match] = ACTIONS(2720), + [anon_sym_mod] = ACTIONS(2720), + [anon_sym_pub] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_trait] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_unsafe] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2720), + [anon_sym_move] = ACTIONS(2720), + [anon_sym_try] = ACTIONS(2720), + [sym_integer_literal] = ACTIONS(2718), + [aux_sym_string_literal_token1] = ACTIONS(2718), + [sym_char_literal] = ACTIONS(2718), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2720), + [sym_super] = ACTIONS(2720), + [sym_crate] = ACTIONS(2720), + [sym_metavariable] = ACTIONS(2718), + [sym__raw_string_literal_start] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2718), }, [STATE(700)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(3252), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_macro_rules_BANG] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_u8] = ACTIONS(2718), - [anon_sym_i8] = ACTIONS(2718), - [anon_sym_u16] = ACTIONS(2718), - [anon_sym_i16] = ACTIONS(2718), - [anon_sym_u32] = ACTIONS(2718), - [anon_sym_i32] = ACTIONS(2718), - [anon_sym_u64] = ACTIONS(2718), - [anon_sym_i64] = ACTIONS(2718), - [anon_sym_u128] = ACTIONS(2718), - [anon_sym_i128] = ACTIONS(2718), - [anon_sym_isize] = ACTIONS(2718), - [anon_sym_usize] = ACTIONS(2718), - [anon_sym_f32] = ACTIONS(2718), - [anon_sym_f64] = ACTIONS(2718), - [anon_sym_bool] = ACTIONS(2718), - [anon_sym_str] = ACTIONS(2718), - [anon_sym_char] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2718), - [anon_sym_async] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_const] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_default] = ACTIONS(2718), - [anon_sym_enum] = ACTIONS(2718), - [anon_sym_fn] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_gen] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_impl] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_loop] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_mod] = ACTIONS(2718), - [anon_sym_pub] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_struct] = ACTIONS(2718), - [anon_sym_trait] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_union] = ACTIONS(2718), - [anon_sym_unsafe] = ACTIONS(2718), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_extern] = ACTIONS(2718), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_move] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [sym_integer_literal] = ACTIONS(2716), - [aux_sym_string_literal_token1] = ACTIONS(2716), - [sym_char_literal] = ACTIONS(2716), - [anon_sym_true] = ACTIONS(2718), - [anon_sym_false] = ACTIONS(2718), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2718), - [sym_super] = ACTIONS(2718), - [sym_crate] = ACTIONS(2718), - [sym_metavariable] = ACTIONS(2716), - [sym__raw_string_literal_start] = ACTIONS(2716), - [sym_float_literal] = ACTIONS(2716), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, [STATE(701)] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2720), - [sym_identifier] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_macro_rules_BANG] = ACTIONS(2720), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_RBRACE] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2720), - [anon_sym_u8] = ACTIONS(2722), - [anon_sym_i8] = ACTIONS(2722), - [anon_sym_u16] = ACTIONS(2722), - [anon_sym_i16] = ACTIONS(2722), - [anon_sym_u32] = ACTIONS(2722), - [anon_sym_i32] = ACTIONS(2722), - [anon_sym_u64] = ACTIONS(2722), - [anon_sym_i64] = ACTIONS(2722), - [anon_sym_u128] = ACTIONS(2722), - [anon_sym_i128] = ACTIONS(2722), - [anon_sym_isize] = ACTIONS(2722), - [anon_sym_usize] = ACTIONS(2722), - [anon_sym_f32] = ACTIONS(2722), - [anon_sym_f64] = ACTIONS(2722), - [anon_sym_bool] = ACTIONS(2722), - [anon_sym_str] = ACTIONS(2722), - [anon_sym_char] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(2720), - [anon_sym_AMP] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2722), - [anon_sym_async] = ACTIONS(2722), - [anon_sym_break] = ACTIONS(2722), - [anon_sym_const] = ACTIONS(2722), - [anon_sym_continue] = ACTIONS(2722), - [anon_sym_default] = ACTIONS(2722), - [anon_sym_enum] = ACTIONS(2722), - [anon_sym_fn] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_gen] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_impl] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_loop] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_mod] = ACTIONS(2722), - [anon_sym_pub] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_struct] = ACTIONS(2722), - [anon_sym_trait] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_union] = ACTIONS(2722), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_extern] = ACTIONS(2722), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_move] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [sym_integer_literal] = ACTIONS(2720), - [aux_sym_string_literal_token1] = ACTIONS(2720), - [sym_char_literal] = ACTIONS(2720), - [anon_sym_true] = ACTIONS(2722), - [anon_sym_false] = ACTIONS(2722), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2722), - [sym_super] = ACTIONS(2722), - [sym_crate] = ACTIONS(2722), - [sym_metavariable] = ACTIONS(2720), - [sym__raw_string_literal_start] = ACTIONS(2720), - [sym_float_literal] = ACTIONS(2720), - }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2724), [sym_identifier] = ACTIONS(2726), [anon_sym_SEMI] = ACTIONS(2724), @@ -88033,5789 +88067,6987 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2724), [sym_float_literal] = ACTIONS(2724), }, + [STATE(702)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(3252), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, [STATE(703)] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [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), + [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(704)] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [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), + [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(705)] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [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), + [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(706)] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [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), + [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(707)] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [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(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(708)] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [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(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(709)] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [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(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(710)] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [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(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(711)] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [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(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(712)] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [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(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(713)] = { + [sym_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [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), + [aux_sym_match_arm_repeat1] = STATE(1052), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, [STATE(714)] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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_attribute_item] = STATE(1306), - [sym_inner_attribute_item] = STATE(1306), - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_match_pattern] = STATE(3692), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3020), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [aux_sym_match_arm_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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_attribute_item] = STATE(1395), + [sym_inner_attribute_item] = STATE(1395), + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [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), + [aux_sym_match_arm_repeat1] = STATE(1052), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [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(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(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [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(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(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [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(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(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [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(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(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [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(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(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [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(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(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [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(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(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_macro_rules_BANG] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_u8] = ACTIONS(2922), - [anon_sym_i8] = ACTIONS(2922), - [anon_sym_u16] = ACTIONS(2922), - [anon_sym_i16] = ACTIONS(2922), - [anon_sym_u32] = ACTIONS(2922), - [anon_sym_i32] = ACTIONS(2922), - [anon_sym_u64] = ACTIONS(2922), - [anon_sym_i64] = ACTIONS(2922), - [anon_sym_u128] = ACTIONS(2922), - [anon_sym_i128] = ACTIONS(2922), - [anon_sym_isize] = ACTIONS(2922), - [anon_sym_usize] = ACTIONS(2922), - [anon_sym_f32] = ACTIONS(2922), - [anon_sym_f64] = ACTIONS(2922), - [anon_sym_bool] = ACTIONS(2922), - [anon_sym_str] = ACTIONS(2922), - [anon_sym_char] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_DOT_DOT] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_fn] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_gen] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_impl] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_loop] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_mod] = ACTIONS(2922), - [anon_sym_pub] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_trait] = ACTIONS(2922), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2922), - [anon_sym_unsafe] = ACTIONS(2922), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(2922), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_move] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [sym_integer_literal] = ACTIONS(2920), - [aux_sym_string_literal_token1] = ACTIONS(2920), - [sym_char_literal] = ACTIONS(2920), - [anon_sym_true] = ACTIONS(2922), - [anon_sym_false] = ACTIONS(2922), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2922), - [sym_super] = ACTIONS(2922), - [sym_crate] = ACTIONS(2922), - [sym_metavariable] = ACTIONS(2920), - [sym__raw_string_literal_start] = ACTIONS(2920), - [sym_float_literal] = ACTIONS(2920), + [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(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_macro_rules_BANG] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_u8] = ACTIONS(2926), - [anon_sym_i8] = ACTIONS(2926), - [anon_sym_u16] = ACTIONS(2926), - [anon_sym_i16] = ACTIONS(2926), - [anon_sym_u32] = ACTIONS(2926), - [anon_sym_i32] = ACTIONS(2926), - [anon_sym_u64] = ACTIONS(2926), - [anon_sym_i64] = ACTIONS(2926), - [anon_sym_u128] = ACTIONS(2926), - [anon_sym_i128] = ACTIONS(2926), - [anon_sym_isize] = ACTIONS(2926), - [anon_sym_usize] = ACTIONS(2926), - [anon_sym_f32] = ACTIONS(2926), - [anon_sym_f64] = ACTIONS(2926), - [anon_sym_bool] = ACTIONS(2926), - [anon_sym_str] = ACTIONS(2926), - [anon_sym_char] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_POUND] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2926), - [anon_sym_async] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_const] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2926), - [anon_sym_enum] = ACTIONS(2926), - [anon_sym_fn] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_gen] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_impl] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_loop] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_mod] = ACTIONS(2926), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(2926), - [anon_sym_struct] = ACTIONS(2926), - [anon_sym_trait] = ACTIONS(2926), - [anon_sym_type] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(2926), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_extern] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_move] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [sym_integer_literal] = ACTIONS(2924), - [aux_sym_string_literal_token1] = ACTIONS(2924), - [sym_char_literal] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2926), - [sym_super] = ACTIONS(2926), - [sym_crate] = ACTIONS(2926), - [sym_metavariable] = ACTIONS(2924), - [sym__raw_string_literal_start] = ACTIONS(2924), - [sym_float_literal] = ACTIONS(2924), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_macro_rules_BANG] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_u8] = ACTIONS(2924), + [anon_sym_i8] = ACTIONS(2924), + [anon_sym_u16] = ACTIONS(2924), + [anon_sym_i16] = ACTIONS(2924), + [anon_sym_u32] = ACTIONS(2924), + [anon_sym_i32] = ACTIONS(2924), + [anon_sym_u64] = ACTIONS(2924), + [anon_sym_i64] = ACTIONS(2924), + [anon_sym_u128] = ACTIONS(2924), + [anon_sym_i128] = ACTIONS(2924), + [anon_sym_isize] = ACTIONS(2924), + [anon_sym_usize] = ACTIONS(2924), + [anon_sym_f32] = ACTIONS(2924), + [anon_sym_f64] = ACTIONS(2924), + [anon_sym_bool] = ACTIONS(2924), + [anon_sym_str] = ACTIONS(2924), + [anon_sym_char] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_DOT_DOT] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_POUND] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2924), + [anon_sym_async] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_fn] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_gen] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_impl] = ACTIONS(2924), + [anon_sym_let] = ACTIONS(2924), + [anon_sym_loop] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_mod] = ACTIONS(2924), + [anon_sym_pub] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_trait] = ACTIONS(2924), + [anon_sym_type] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2924), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_move] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [sym_integer_literal] = ACTIONS(2922), + [aux_sym_string_literal_token1] = ACTIONS(2922), + [sym_char_literal] = ACTIONS(2922), + [anon_sym_true] = ACTIONS(2924), + [anon_sym_false] = ACTIONS(2924), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2924), + [sym_super] = ACTIONS(2924), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(2922), + [sym__raw_string_literal_start] = ACTIONS(2922), + [sym_float_literal] = ACTIONS(2922), }, [STATE(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_macro_rules_BANG] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_u8] = ACTIONS(2930), - [anon_sym_i8] = ACTIONS(2930), - [anon_sym_u16] = ACTIONS(2930), - [anon_sym_i16] = ACTIONS(2930), - [anon_sym_u32] = ACTIONS(2930), - [anon_sym_i32] = ACTIONS(2930), - [anon_sym_u64] = ACTIONS(2930), - [anon_sym_i64] = ACTIONS(2930), - [anon_sym_u128] = ACTIONS(2930), - [anon_sym_i128] = ACTIONS(2930), - [anon_sym_isize] = ACTIONS(2930), - [anon_sym_usize] = ACTIONS(2930), - [anon_sym_f32] = ACTIONS(2930), - [anon_sym_f64] = ACTIONS(2930), - [anon_sym_bool] = ACTIONS(2930), - [anon_sym_str] = ACTIONS(2930), - [anon_sym_char] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_DOT_DOT] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_POUND] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2930), - [anon_sym_async] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_fn] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_gen] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_impl] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_loop] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_mod] = ACTIONS(2930), - [anon_sym_pub] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_trait] = ACTIONS(2930), - [anon_sym_type] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_unsafe] = ACTIONS(2930), - [anon_sym_use] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_yield] = ACTIONS(2930), - [anon_sym_move] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [sym_integer_literal] = ACTIONS(2928), - [aux_sym_string_literal_token1] = ACTIONS(2928), - [sym_char_literal] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2930), - [sym_super] = ACTIONS(2930), - [sym_crate] = ACTIONS(2930), - [sym_metavariable] = ACTIONS(2928), - [sym__raw_string_literal_start] = ACTIONS(2928), - [sym_float_literal] = ACTIONS(2928), + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_macro_rules_BANG] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_u8] = ACTIONS(2928), + [anon_sym_i8] = ACTIONS(2928), + [anon_sym_u16] = ACTIONS(2928), + [anon_sym_i16] = ACTIONS(2928), + [anon_sym_u32] = ACTIONS(2928), + [anon_sym_i32] = ACTIONS(2928), + [anon_sym_u64] = ACTIONS(2928), + [anon_sym_i64] = ACTIONS(2928), + [anon_sym_u128] = ACTIONS(2928), + [anon_sym_i128] = ACTIONS(2928), + [anon_sym_isize] = ACTIONS(2928), + [anon_sym_usize] = ACTIONS(2928), + [anon_sym_f32] = ACTIONS(2928), + [anon_sym_f64] = ACTIONS(2928), + [anon_sym_bool] = ACTIONS(2928), + [anon_sym_str] = ACTIONS(2928), + [anon_sym_char] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_DOT_DOT] = ACTIONS(2926), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2928), + [anon_sym_async] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_fn] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_gen] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_impl] = ACTIONS(2928), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_loop] = ACTIONS(2928), + [anon_sym_match] = ACTIONS(2928), + [anon_sym_mod] = ACTIONS(2928), + [anon_sym_pub] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_trait] = ACTIONS(2928), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_unsafe] = ACTIONS(2928), + [anon_sym_use] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym_yield] = ACTIONS(2928), + [anon_sym_move] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [sym_integer_literal] = ACTIONS(2926), + [aux_sym_string_literal_token1] = ACTIONS(2926), + [sym_char_literal] = ACTIONS(2926), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2928), + [sym_super] = ACTIONS(2928), + [sym_crate] = ACTIONS(2928), + [sym_metavariable] = ACTIONS(2926), + [sym__raw_string_literal_start] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), }, [STATE(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_macro_rules_BANG] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_u8] = ACTIONS(2934), - [anon_sym_i8] = ACTIONS(2934), - [anon_sym_u16] = ACTIONS(2934), - [anon_sym_i16] = ACTIONS(2934), - [anon_sym_u32] = ACTIONS(2934), - [anon_sym_i32] = ACTIONS(2934), - [anon_sym_u64] = ACTIONS(2934), - [anon_sym_i64] = ACTIONS(2934), - [anon_sym_u128] = ACTIONS(2934), - [anon_sym_i128] = ACTIONS(2934), - [anon_sym_isize] = ACTIONS(2934), - [anon_sym_usize] = ACTIONS(2934), - [anon_sym_f32] = ACTIONS(2934), - [anon_sym_f64] = ACTIONS(2934), - [anon_sym_bool] = ACTIONS(2934), - [anon_sym_str] = ACTIONS(2934), - [anon_sym_char] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2932), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2932), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2932), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_POUND] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2934), - [anon_sym_async] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_fn] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_gen] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_impl] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_loop] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_mod] = ACTIONS(2934), - [anon_sym_pub] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_trait] = ACTIONS(2934), - [anon_sym_type] = ACTIONS(2934), - [anon_sym_union] = ACTIONS(2934), - [anon_sym_unsafe] = ACTIONS(2934), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_extern] = ACTIONS(2934), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_move] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [sym_integer_literal] = ACTIONS(2932), - [aux_sym_string_literal_token1] = ACTIONS(2932), - [sym_char_literal] = ACTIONS(2932), - [anon_sym_true] = ACTIONS(2934), - [anon_sym_false] = ACTIONS(2934), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2934), - [sym_super] = ACTIONS(2934), - [sym_crate] = ACTIONS(2934), - [sym_metavariable] = ACTIONS(2932), - [sym__raw_string_literal_start] = ACTIONS(2932), - [sym_float_literal] = ACTIONS(2932), + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_macro_rules_BANG] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_u8] = ACTIONS(2932), + [anon_sym_i8] = ACTIONS(2932), + [anon_sym_u16] = ACTIONS(2932), + [anon_sym_i16] = ACTIONS(2932), + [anon_sym_u32] = ACTIONS(2932), + [anon_sym_i32] = ACTIONS(2932), + [anon_sym_u64] = ACTIONS(2932), + [anon_sym_i64] = ACTIONS(2932), + [anon_sym_u128] = ACTIONS(2932), + [anon_sym_i128] = ACTIONS(2932), + [anon_sym_isize] = ACTIONS(2932), + [anon_sym_usize] = ACTIONS(2932), + [anon_sym_f32] = ACTIONS(2932), + [anon_sym_f64] = ACTIONS(2932), + [anon_sym_bool] = ACTIONS(2932), + [anon_sym_str] = ACTIONS(2932), + [anon_sym_char] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_DOT_DOT] = ACTIONS(2930), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_POUND] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2932), + [anon_sym_async] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_fn] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_gen] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_impl] = ACTIONS(2932), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_loop] = ACTIONS(2932), + [anon_sym_match] = ACTIONS(2932), + [anon_sym_mod] = ACTIONS(2932), + [anon_sym_pub] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_trait] = ACTIONS(2932), + [anon_sym_type] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_unsafe] = ACTIONS(2932), + [anon_sym_use] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2932), + [anon_sym_move] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [sym_integer_literal] = ACTIONS(2930), + [aux_sym_string_literal_token1] = ACTIONS(2930), + [sym_char_literal] = ACTIONS(2930), + [anon_sym_true] = ACTIONS(2932), + [anon_sym_false] = ACTIONS(2932), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_crate] = ACTIONS(2932), + [sym_metavariable] = ACTIONS(2930), + [sym__raw_string_literal_start] = ACTIONS(2930), + [sym_float_literal] = ACTIONS(2930), }, [STATE(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2938), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_macro_rules_BANG] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_RBRACE] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_u8] = ACTIONS(2938), - [anon_sym_i8] = ACTIONS(2938), - [anon_sym_u16] = ACTIONS(2938), - [anon_sym_i16] = ACTIONS(2938), - [anon_sym_u32] = ACTIONS(2938), - [anon_sym_i32] = ACTIONS(2938), - [anon_sym_u64] = ACTIONS(2938), - [anon_sym_i64] = ACTIONS(2938), - [anon_sym_u128] = ACTIONS(2938), - [anon_sym_i128] = ACTIONS(2938), - [anon_sym_isize] = ACTIONS(2938), - [anon_sym_usize] = ACTIONS(2938), - [anon_sym_f32] = ACTIONS(2938), - [anon_sym_f64] = ACTIONS(2938), - [anon_sym_bool] = ACTIONS(2938), - [anon_sym_str] = ACTIONS(2938), - [anon_sym_char] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_DOT_DOT] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_POUND] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2938), - [anon_sym_async] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_const] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_fn] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_gen] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_impl] = ACTIONS(2938), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_loop] = ACTIONS(2938), - [anon_sym_match] = ACTIONS(2938), - [anon_sym_mod] = ACTIONS(2938), - [anon_sym_pub] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_trait] = ACTIONS(2938), - [anon_sym_type] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2938), - [anon_sym_unsafe] = ACTIONS(2938), - [anon_sym_use] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_extern] = ACTIONS(2938), - [anon_sym_yield] = ACTIONS(2938), - [anon_sym_move] = ACTIONS(2938), - [anon_sym_try] = ACTIONS(2938), - [sym_integer_literal] = ACTIONS(2936), - [aux_sym_string_literal_token1] = ACTIONS(2936), - [sym_char_literal] = ACTIONS(2936), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2938), - [sym_super] = ACTIONS(2938), - [sym_crate] = ACTIONS(2938), - [sym_metavariable] = ACTIONS(2936), - [sym__raw_string_literal_start] = ACTIONS(2936), - [sym_float_literal] = ACTIONS(2936), + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_macro_rules_BANG] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_u8] = ACTIONS(2936), + [anon_sym_i8] = ACTIONS(2936), + [anon_sym_u16] = ACTIONS(2936), + [anon_sym_i16] = ACTIONS(2936), + [anon_sym_u32] = ACTIONS(2936), + [anon_sym_i32] = ACTIONS(2936), + [anon_sym_u64] = ACTIONS(2936), + [anon_sym_i64] = ACTIONS(2936), + [anon_sym_u128] = ACTIONS(2936), + [anon_sym_i128] = ACTIONS(2936), + [anon_sym_isize] = ACTIONS(2936), + [anon_sym_usize] = ACTIONS(2936), + [anon_sym_f32] = ACTIONS(2936), + [anon_sym_f64] = ACTIONS(2936), + [anon_sym_bool] = ACTIONS(2936), + [anon_sym_str] = ACTIONS(2936), + [anon_sym_char] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_DOT_DOT] = ACTIONS(2934), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_async] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_fn] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_gen] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_impl] = ACTIONS(2936), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_loop] = ACTIONS(2936), + [anon_sym_match] = ACTIONS(2936), + [anon_sym_mod] = ACTIONS(2936), + [anon_sym_pub] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_trait] = ACTIONS(2936), + [anon_sym_type] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_unsafe] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2936), + [anon_sym_move] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [sym_integer_literal] = ACTIONS(2934), + [aux_sym_string_literal_token1] = ACTIONS(2934), + [sym_char_literal] = ACTIONS(2934), + [anon_sym_true] = ACTIONS(2936), + [anon_sym_false] = ACTIONS(2936), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2936), + [sym_super] = ACTIONS(2936), + [sym_crate] = ACTIONS(2936), + [sym_metavariable] = ACTIONS(2934), + [sym__raw_string_literal_start] = ACTIONS(2934), + [sym_float_literal] = ACTIONS(2934), }, [STATE(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2942), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_macro_rules_BANG] = ACTIONS(2940), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym_STAR] = ACTIONS(2940), - [anon_sym_u8] = ACTIONS(2942), - [anon_sym_i8] = ACTIONS(2942), - [anon_sym_u16] = ACTIONS(2942), - [anon_sym_i16] = ACTIONS(2942), - [anon_sym_u32] = ACTIONS(2942), - [anon_sym_i32] = ACTIONS(2942), - [anon_sym_u64] = ACTIONS(2942), - [anon_sym_i64] = ACTIONS(2942), - [anon_sym_u128] = ACTIONS(2942), - [anon_sym_i128] = ACTIONS(2942), - [anon_sym_isize] = ACTIONS(2942), - [anon_sym_usize] = ACTIONS(2942), - [anon_sym_f32] = ACTIONS(2942), - [anon_sym_f64] = ACTIONS(2942), - [anon_sym_bool] = ACTIONS(2942), - [anon_sym_str] = ACTIONS(2942), - [anon_sym_char] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2940), - [anon_sym_BANG] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2940), - [anon_sym_PIPE] = ACTIONS(2940), - [anon_sym_LT] = ACTIONS(2940), - [anon_sym_DOT_DOT] = ACTIONS(2940), - [anon_sym_COLON_COLON] = ACTIONS(2940), - [anon_sym_POUND] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_default] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [anon_sym_fn] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_gen] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_impl] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_loop] = ACTIONS(2942), - [anon_sym_match] = ACTIONS(2942), - [anon_sym_mod] = ACTIONS(2942), - [anon_sym_pub] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_struct] = ACTIONS(2942), - [anon_sym_trait] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_union] = ACTIONS(2942), - [anon_sym_unsafe] = ACTIONS(2942), - [anon_sym_use] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_extern] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_move] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [sym_integer_literal] = ACTIONS(2940), - [aux_sym_string_literal_token1] = ACTIONS(2940), - [sym_char_literal] = ACTIONS(2940), - [anon_sym_true] = ACTIONS(2942), - [anon_sym_false] = ACTIONS(2942), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_crate] = ACTIONS(2942), - [sym_metavariable] = ACTIONS(2940), - [sym__raw_string_literal_start] = ACTIONS(2940), - [sym_float_literal] = ACTIONS(2940), + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_macro_rules_BANG] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_u8] = ACTIONS(2940), + [anon_sym_i8] = ACTIONS(2940), + [anon_sym_u16] = ACTIONS(2940), + [anon_sym_i16] = ACTIONS(2940), + [anon_sym_u32] = ACTIONS(2940), + [anon_sym_i32] = ACTIONS(2940), + [anon_sym_u64] = ACTIONS(2940), + [anon_sym_i64] = ACTIONS(2940), + [anon_sym_u128] = ACTIONS(2940), + [anon_sym_i128] = ACTIONS(2940), + [anon_sym_isize] = ACTIONS(2940), + [anon_sym_usize] = ACTIONS(2940), + [anon_sym_f32] = ACTIONS(2940), + [anon_sym_f64] = ACTIONS(2940), + [anon_sym_bool] = ACTIONS(2940), + [anon_sym_str] = ACTIONS(2940), + [anon_sym_char] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_DOT_DOT] = ACTIONS(2938), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_POUND] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_async] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_fn] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_gen] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_impl] = ACTIONS(2940), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_loop] = ACTIONS(2940), + [anon_sym_match] = ACTIONS(2940), + [anon_sym_mod] = ACTIONS(2940), + [anon_sym_pub] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_trait] = ACTIONS(2940), + [anon_sym_type] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_unsafe] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2940), + [anon_sym_move] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [sym_integer_literal] = ACTIONS(2938), + [aux_sym_string_literal_token1] = ACTIONS(2938), + [sym_char_literal] = ACTIONS(2938), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2940), + [sym_super] = ACTIONS(2940), + [sym_crate] = ACTIONS(2940), + [sym_metavariable] = ACTIONS(2938), + [sym__raw_string_literal_start] = ACTIONS(2938), + [sym_float_literal] = ACTIONS(2938), }, [STATE(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2946), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_macro_rules_BANG] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_RBRACE] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2944), - [anon_sym_u8] = ACTIONS(2946), - [anon_sym_i8] = ACTIONS(2946), - [anon_sym_u16] = ACTIONS(2946), - [anon_sym_i16] = ACTIONS(2946), - [anon_sym_u32] = ACTIONS(2946), - [anon_sym_i32] = ACTIONS(2946), - [anon_sym_u64] = ACTIONS(2946), - [anon_sym_i64] = ACTIONS(2946), - [anon_sym_u128] = ACTIONS(2946), - [anon_sym_i128] = ACTIONS(2946), - [anon_sym_isize] = ACTIONS(2946), - [anon_sym_usize] = ACTIONS(2946), - [anon_sym_f32] = ACTIONS(2946), - [anon_sym_f64] = ACTIONS(2946), - [anon_sym_bool] = ACTIONS(2946), - [anon_sym_str] = ACTIONS(2946), - [anon_sym_char] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2944), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_AMP] = ACTIONS(2944), - [anon_sym_PIPE] = ACTIONS(2944), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2944), - [anon_sym_COLON_COLON] = ACTIONS(2944), - [anon_sym_POUND] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2946), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_const] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_default] = ACTIONS(2946), - [anon_sym_enum] = ACTIONS(2946), - [anon_sym_fn] = ACTIONS(2946), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_gen] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_impl] = ACTIONS(2946), - [anon_sym_let] = ACTIONS(2946), - [anon_sym_loop] = ACTIONS(2946), - [anon_sym_match] = ACTIONS(2946), - [anon_sym_mod] = ACTIONS(2946), - [anon_sym_pub] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_struct] = ACTIONS(2946), - [anon_sym_trait] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_union] = ACTIONS(2946), - [anon_sym_unsafe] = ACTIONS(2946), - [anon_sym_use] = ACTIONS(2946), - [anon_sym_while] = ACTIONS(2946), - [anon_sym_extern] = ACTIONS(2946), - [anon_sym_yield] = ACTIONS(2946), - [anon_sym_move] = ACTIONS(2946), - [anon_sym_try] = ACTIONS(2946), - [sym_integer_literal] = ACTIONS(2944), - [aux_sym_string_literal_token1] = ACTIONS(2944), - [sym_char_literal] = ACTIONS(2944), - [anon_sym_true] = ACTIONS(2946), - [anon_sym_false] = ACTIONS(2946), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2946), - [sym_super] = ACTIONS(2946), - [sym_crate] = ACTIONS(2946), - [sym_metavariable] = ACTIONS(2944), - [sym__raw_string_literal_start] = ACTIONS(2944), - [sym_float_literal] = ACTIONS(2944), + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_identifier] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_macro_rules_BANG] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_u8] = ACTIONS(2944), + [anon_sym_i8] = ACTIONS(2944), + [anon_sym_u16] = ACTIONS(2944), + [anon_sym_i16] = ACTIONS(2944), + [anon_sym_u32] = ACTIONS(2944), + [anon_sym_i32] = ACTIONS(2944), + [anon_sym_u64] = ACTIONS(2944), + [anon_sym_i64] = ACTIONS(2944), + [anon_sym_u128] = ACTIONS(2944), + [anon_sym_i128] = ACTIONS(2944), + [anon_sym_isize] = ACTIONS(2944), + [anon_sym_usize] = ACTIONS(2944), + [anon_sym_f32] = ACTIONS(2944), + [anon_sym_f64] = ACTIONS(2944), + [anon_sym_bool] = ACTIONS(2944), + [anon_sym_str] = ACTIONS(2944), + [anon_sym_char] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_DOT_DOT] = ACTIONS(2942), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_POUND] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_fn] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_gen] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_impl] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_loop] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_mod] = ACTIONS(2944), + [anon_sym_pub] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_trait] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_unsafe] = ACTIONS(2944), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_move] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [sym_integer_literal] = ACTIONS(2942), + [aux_sym_string_literal_token1] = ACTIONS(2942), + [sym_char_literal] = ACTIONS(2942), + [anon_sym_true] = ACTIONS(2944), + [anon_sym_false] = ACTIONS(2944), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2944), + [sym_super] = ACTIONS(2944), + [sym_crate] = ACTIONS(2944), + [sym_metavariable] = ACTIONS(2942), + [sym__raw_string_literal_start] = ACTIONS(2942), + [sym_float_literal] = ACTIONS(2942), }, [STATE(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2948), - [anon_sym_macro_rules_BANG] = ACTIONS(2948), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_STAR] = ACTIONS(2948), - [anon_sym_u8] = ACTIONS(2950), - [anon_sym_i8] = ACTIONS(2950), - [anon_sym_u16] = ACTIONS(2950), - [anon_sym_i16] = ACTIONS(2950), - [anon_sym_u32] = ACTIONS(2950), - [anon_sym_i32] = ACTIONS(2950), - [anon_sym_u64] = ACTIONS(2950), - [anon_sym_i64] = ACTIONS(2950), - [anon_sym_u128] = ACTIONS(2950), - [anon_sym_i128] = ACTIONS(2950), - [anon_sym_isize] = ACTIONS(2950), - [anon_sym_usize] = ACTIONS(2950), - [anon_sym_f32] = ACTIONS(2950), - [anon_sym_f64] = ACTIONS(2950), - [anon_sym_bool] = ACTIONS(2950), - [anon_sym_str] = ACTIONS(2950), - [anon_sym_char] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_BANG] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_DOT_DOT] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_POUND] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2950), - [anon_sym_async] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_const] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_default] = ACTIONS(2950), - [anon_sym_enum] = ACTIONS(2950), - [anon_sym_fn] = ACTIONS(2950), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_gen] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_impl] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_loop] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_mod] = ACTIONS(2950), - [anon_sym_pub] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_static] = ACTIONS(2950), - [anon_sym_struct] = ACTIONS(2950), - [anon_sym_trait] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_union] = ACTIONS(2950), - [anon_sym_unsafe] = ACTIONS(2950), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_extern] = ACTIONS(2950), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_move] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [sym_integer_literal] = ACTIONS(2948), - [aux_sym_string_literal_token1] = ACTIONS(2948), - [sym_char_literal] = ACTIONS(2948), - [anon_sym_true] = ACTIONS(2950), - [anon_sym_false] = ACTIONS(2950), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2950), - [sym_super] = ACTIONS(2950), - [sym_crate] = ACTIONS(2950), - [sym_metavariable] = ACTIONS(2948), - [sym__raw_string_literal_start] = ACTIONS(2948), - [sym_float_literal] = ACTIONS(2948), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_macro_rules_BANG] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_u8] = ACTIONS(2948), + [anon_sym_i8] = ACTIONS(2948), + [anon_sym_u16] = ACTIONS(2948), + [anon_sym_i16] = ACTIONS(2948), + [anon_sym_u32] = ACTIONS(2948), + [anon_sym_i32] = ACTIONS(2948), + [anon_sym_u64] = ACTIONS(2948), + [anon_sym_i64] = ACTIONS(2948), + [anon_sym_u128] = ACTIONS(2948), + [anon_sym_i128] = ACTIONS(2948), + [anon_sym_isize] = ACTIONS(2948), + [anon_sym_usize] = ACTIONS(2948), + [anon_sym_f32] = ACTIONS(2948), + [anon_sym_f64] = ACTIONS(2948), + [anon_sym_bool] = ACTIONS(2948), + [anon_sym_str] = ACTIONS(2948), + [anon_sym_char] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_POUND] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2948), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_fn] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_gen] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_impl] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_loop] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_mod] = ACTIONS(2948), + [anon_sym_pub] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_trait] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_unsafe] = ACTIONS(2948), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_move] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [sym_integer_literal] = ACTIONS(2946), + [aux_sym_string_literal_token1] = ACTIONS(2946), + [sym_char_literal] = ACTIONS(2946), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2948), + [sym_super] = ACTIONS(2948), + [sym_crate] = ACTIONS(2948), + [sym_metavariable] = ACTIONS(2946), + [sym__raw_string_literal_start] = ACTIONS(2946), + [sym_float_literal] = ACTIONS(2946), }, [STATE(760)] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2954), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_macro_rules_BANG] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_STAR] = ACTIONS(2952), - [anon_sym_u8] = ACTIONS(2954), - [anon_sym_i8] = ACTIONS(2954), - [anon_sym_u16] = ACTIONS(2954), - [anon_sym_i16] = ACTIONS(2954), - [anon_sym_u32] = ACTIONS(2954), - [anon_sym_i32] = ACTIONS(2954), - [anon_sym_u64] = ACTIONS(2954), - [anon_sym_i64] = ACTIONS(2954), - [anon_sym_u128] = ACTIONS(2954), - [anon_sym_i128] = ACTIONS(2954), - [anon_sym_isize] = ACTIONS(2954), - [anon_sym_usize] = ACTIONS(2954), - [anon_sym_f32] = ACTIONS(2954), - [anon_sym_f64] = ACTIONS(2954), - [anon_sym_bool] = ACTIONS(2954), - [anon_sym_str] = ACTIONS(2954), - [anon_sym_char] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2952), - [anon_sym_DOT_DOT] = ACTIONS(2952), - [anon_sym_COLON_COLON] = ACTIONS(2952), - [anon_sym_POUND] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_async] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_const] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), - [anon_sym_fn] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_gen] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_impl] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_loop] = ACTIONS(2954), - [anon_sym_match] = ACTIONS(2954), - [anon_sym_mod] = ACTIONS(2954), - [anon_sym_pub] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2954), - [anon_sym_trait] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_union] = ACTIONS(2954), - [anon_sym_unsafe] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_extern] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2954), - [anon_sym_move] = ACTIONS(2954), - [anon_sym_try] = ACTIONS(2954), - [sym_integer_literal] = ACTIONS(2952), - [aux_sym_string_literal_token1] = ACTIONS(2952), - [sym_char_literal] = ACTIONS(2952), - [anon_sym_true] = ACTIONS(2954), - [anon_sym_false] = ACTIONS(2954), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2954), - [sym_super] = ACTIONS(2954), - [sym_crate] = ACTIONS(2954), - [sym_metavariable] = ACTIONS(2952), - [sym__raw_string_literal_start] = ACTIONS(2952), - [sym_float_literal] = ACTIONS(2952), + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_macro_rules_BANG] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_DOT_DOT] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2952), + [anon_sym_async] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_fn] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_gen] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_impl] = ACTIONS(2952), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_loop] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_mod] = ACTIONS(2952), + [anon_sym_pub] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_trait] = ACTIONS(2952), + [anon_sym_type] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_unsafe] = ACTIONS(2952), + [anon_sym_use] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym_yield] = ACTIONS(2952), + [anon_sym_move] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [sym_integer_literal] = ACTIONS(2950), + [aux_sym_string_literal_token1] = ACTIONS(2950), + [sym_char_literal] = ACTIONS(2950), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2952), + [sym_super] = ACTIONS(2952), + [sym_crate] = ACTIONS(2952), + [sym_metavariable] = ACTIONS(2950), + [sym__raw_string_literal_start] = ACTIONS(2950), + [sym_float_literal] = ACTIONS(2950), }, [STATE(761)] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_macro_rules_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2956), - [anon_sym_u8] = ACTIONS(2958), - [anon_sym_i8] = ACTIONS(2958), - [anon_sym_u16] = ACTIONS(2958), - [anon_sym_i16] = ACTIONS(2958), - [anon_sym_u32] = ACTIONS(2958), - [anon_sym_i32] = ACTIONS(2958), - [anon_sym_u64] = ACTIONS(2958), - [anon_sym_i64] = ACTIONS(2958), - [anon_sym_u128] = ACTIONS(2958), - [anon_sym_i128] = ACTIONS(2958), - [anon_sym_isize] = ACTIONS(2958), - [anon_sym_usize] = ACTIONS(2958), - [anon_sym_f32] = ACTIONS(2958), - [anon_sym_f64] = ACTIONS(2958), - [anon_sym_bool] = ACTIONS(2958), - [anon_sym_str] = ACTIONS(2958), - [anon_sym_char] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_DOT_DOT] = ACTIONS(2956), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_POUND] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_default] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [anon_sym_fn] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_gen] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_impl] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_loop] = ACTIONS(2958), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_mod] = ACTIONS(2958), - [anon_sym_pub] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_struct] = ACTIONS(2958), - [anon_sym_trait] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_union] = ACTIONS(2958), - [anon_sym_unsafe] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_extern] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_move] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [sym_integer_literal] = ACTIONS(2956), - [aux_sym_string_literal_token1] = ACTIONS(2956), - [sym_char_literal] = ACTIONS(2956), - [anon_sym_true] = ACTIONS(2958), - [anon_sym_false] = ACTIONS(2958), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_crate] = ACTIONS(2958), - [sym_metavariable] = ACTIONS(2956), - [sym__raw_string_literal_start] = ACTIONS(2956), - [sym_float_literal] = ACTIONS(2956), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_macro_rules_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_u8] = ACTIONS(2956), + [anon_sym_i8] = ACTIONS(2956), + [anon_sym_u16] = ACTIONS(2956), + [anon_sym_i16] = ACTIONS(2956), + [anon_sym_u32] = ACTIONS(2956), + [anon_sym_i32] = ACTIONS(2956), + [anon_sym_u64] = ACTIONS(2956), + [anon_sym_i64] = ACTIONS(2956), + [anon_sym_u128] = ACTIONS(2956), + [anon_sym_i128] = ACTIONS(2956), + [anon_sym_isize] = ACTIONS(2956), + [anon_sym_usize] = ACTIONS(2956), + [anon_sym_f32] = ACTIONS(2956), + [anon_sym_f64] = ACTIONS(2956), + [anon_sym_bool] = ACTIONS(2956), + [anon_sym_str] = ACTIONS(2956), + [anon_sym_char] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_DOT_DOT] = ACTIONS(2954), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2956), + [anon_sym_async] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_fn] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_gen] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_impl] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_loop] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_mod] = ACTIONS(2956), + [anon_sym_pub] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_trait] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_unsafe] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_move] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [sym_integer_literal] = ACTIONS(2954), + [aux_sym_string_literal_token1] = ACTIONS(2954), + [sym_char_literal] = ACTIONS(2954), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2956), + [sym_super] = ACTIONS(2956), + [sym_crate] = ACTIONS(2956), + [sym_metavariable] = ACTIONS(2954), + [sym__raw_string_literal_start] = ACTIONS(2954), + [sym_float_literal] = ACTIONS(2954), }, [STATE(762)] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_macro_rules_BANG] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(2960), - [anon_sym_u8] = ACTIONS(2962), - [anon_sym_i8] = ACTIONS(2962), - [anon_sym_u16] = ACTIONS(2962), - [anon_sym_i16] = ACTIONS(2962), - [anon_sym_u32] = ACTIONS(2962), - [anon_sym_i32] = ACTIONS(2962), - [anon_sym_u64] = ACTIONS(2962), - [anon_sym_i64] = ACTIONS(2962), - [anon_sym_u128] = ACTIONS(2962), - [anon_sym_i128] = ACTIONS(2962), - [anon_sym_isize] = ACTIONS(2962), - [anon_sym_usize] = ACTIONS(2962), - [anon_sym_f32] = ACTIONS(2962), - [anon_sym_f64] = ACTIONS(2962), - [anon_sym_bool] = ACTIONS(2962), - [anon_sym_str] = ACTIONS(2962), - [anon_sym_char] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_PIPE] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2960), - [anon_sym_DOT_DOT] = ACTIONS(2960), - [anon_sym_COLON_COLON] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_async] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_const] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), - [anon_sym_fn] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_gen] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_impl] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2962), - [anon_sym_loop] = ACTIONS(2962), - [anon_sym_match] = ACTIONS(2962), - [anon_sym_mod] = ACTIONS(2962), - [anon_sym_pub] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_struct] = ACTIONS(2962), - [anon_sym_trait] = ACTIONS(2962), - [anon_sym_type] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_unsafe] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_extern] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_move] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(2962), - [sym_integer_literal] = ACTIONS(2960), - [aux_sym_string_literal_token1] = ACTIONS(2960), - [sym_char_literal] = ACTIONS(2960), - [anon_sym_true] = ACTIONS(2962), - [anon_sym_false] = ACTIONS(2962), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2962), - [sym_super] = ACTIONS(2962), - [sym_crate] = ACTIONS(2962), - [sym_metavariable] = ACTIONS(2960), - [sym__raw_string_literal_start] = ACTIONS(2960), - [sym_float_literal] = ACTIONS(2960), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_macro_rules_BANG] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_DOT_DOT] = ACTIONS(2958), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2960), + [anon_sym_async] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2960), + [anon_sym_fn] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_gen] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_impl] = ACTIONS(2960), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_loop] = ACTIONS(2960), + [anon_sym_match] = ACTIONS(2960), + [anon_sym_mod] = ACTIONS(2960), + [anon_sym_pub] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_struct] = ACTIONS(2960), + [anon_sym_trait] = ACTIONS(2960), + [anon_sym_type] = ACTIONS(2960), + [anon_sym_union] = ACTIONS(2960), + [anon_sym_unsafe] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_extern] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2960), + [anon_sym_move] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2960), + [sym_integer_literal] = ACTIONS(2958), + [aux_sym_string_literal_token1] = ACTIONS(2958), + [sym_char_literal] = ACTIONS(2958), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2960), + [sym_super] = ACTIONS(2960), + [sym_crate] = ACTIONS(2960), + [sym_metavariable] = ACTIONS(2958), + [sym__raw_string_literal_start] = ACTIONS(2958), + [sym_float_literal] = ACTIONS(2958), }, [STATE(763)] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_macro_rules_BANG] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(2964), - [anon_sym_u8] = ACTIONS(2966), - [anon_sym_i8] = ACTIONS(2966), - [anon_sym_u16] = ACTIONS(2966), - [anon_sym_i16] = ACTIONS(2966), - [anon_sym_u32] = ACTIONS(2966), - [anon_sym_i32] = ACTIONS(2966), - [anon_sym_u64] = ACTIONS(2966), - [anon_sym_i64] = ACTIONS(2966), - [anon_sym_u128] = ACTIONS(2966), - [anon_sym_i128] = ACTIONS(2966), - [anon_sym_isize] = ACTIONS(2966), - [anon_sym_usize] = ACTIONS(2966), - [anon_sym_f32] = ACTIONS(2966), - [anon_sym_f64] = ACTIONS(2966), - [anon_sym_bool] = ACTIONS(2966), - [anon_sym_str] = ACTIONS(2966), - [anon_sym_char] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_BANG] = ACTIONS(2964), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_PIPE] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2964), - [anon_sym_DOT_DOT] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2964), - [anon_sym_POUND] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_async] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_fn] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_gen] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_impl] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_loop] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_mod] = ACTIONS(2966), - [anon_sym_pub] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_trait] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_union] = ACTIONS(2966), - [anon_sym_unsafe] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_extern] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_move] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [sym_integer_literal] = ACTIONS(2964), - [aux_sym_string_literal_token1] = ACTIONS(2964), - [sym_char_literal] = ACTIONS(2964), - [anon_sym_true] = ACTIONS(2966), - [anon_sym_false] = ACTIONS(2966), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2966), - [sym_super] = ACTIONS(2966), - [sym_crate] = ACTIONS(2966), - [sym_metavariable] = ACTIONS(2964), - [sym__raw_string_literal_start] = ACTIONS(2964), - [sym_float_literal] = ACTIONS(2964), + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_macro_rules_BANG] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_u8] = ACTIONS(2964), + [anon_sym_i8] = ACTIONS(2964), + [anon_sym_u16] = ACTIONS(2964), + [anon_sym_i16] = ACTIONS(2964), + [anon_sym_u32] = ACTIONS(2964), + [anon_sym_i32] = ACTIONS(2964), + [anon_sym_u64] = ACTIONS(2964), + [anon_sym_i64] = ACTIONS(2964), + [anon_sym_u128] = ACTIONS(2964), + [anon_sym_i128] = ACTIONS(2964), + [anon_sym_isize] = ACTIONS(2964), + [anon_sym_usize] = ACTIONS(2964), + [anon_sym_f32] = ACTIONS(2964), + [anon_sym_f64] = ACTIONS(2964), + [anon_sym_bool] = ACTIONS(2964), + [anon_sym_str] = ACTIONS(2964), + [anon_sym_char] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_DOT_DOT] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(2962), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_async] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_const] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_default] = ACTIONS(2964), + [anon_sym_enum] = ACTIONS(2964), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_gen] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_impl] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_loop] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_mod] = ACTIONS(2964), + [anon_sym_pub] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_struct] = ACTIONS(2964), + [anon_sym_trait] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_union] = ACTIONS(2964), + [anon_sym_unsafe] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_extern] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_move] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [sym_integer_literal] = ACTIONS(2962), + [aux_sym_string_literal_token1] = ACTIONS(2962), + [sym_char_literal] = ACTIONS(2962), + [anon_sym_true] = ACTIONS(2964), + [anon_sym_false] = ACTIONS(2964), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2962), + [sym__raw_string_literal_start] = ACTIONS(2962), + [sym_float_literal] = ACTIONS(2962), }, [STATE(764)] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_macro_rules_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_u8] = ACTIONS(2970), - [anon_sym_i8] = ACTIONS(2970), - [anon_sym_u16] = ACTIONS(2970), - [anon_sym_i16] = ACTIONS(2970), - [anon_sym_u32] = ACTIONS(2970), - [anon_sym_i32] = ACTIONS(2970), - [anon_sym_u64] = ACTIONS(2970), - [anon_sym_i64] = ACTIONS(2970), - [anon_sym_u128] = ACTIONS(2970), - [anon_sym_i128] = ACTIONS(2970), - [anon_sym_isize] = ACTIONS(2970), - [anon_sym_usize] = ACTIONS(2970), - [anon_sym_f32] = ACTIONS(2970), - [anon_sym_f64] = ACTIONS(2970), - [anon_sym_bool] = ACTIONS(2970), - [anon_sym_str] = ACTIONS(2970), - [anon_sym_char] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_PIPE] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(2968), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_POUND] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_async] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_gen] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_impl] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_loop] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_mod] = ACTIONS(2970), - [anon_sym_pub] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_trait] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_move] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [sym_integer_literal] = ACTIONS(2968), - [aux_sym_string_literal_token1] = ACTIONS(2968), - [sym_char_literal] = ACTIONS(2968), - [anon_sym_true] = ACTIONS(2970), - [anon_sym_false] = ACTIONS(2970), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2970), - [sym_super] = ACTIONS(2970), - [sym_crate] = ACTIONS(2970), - [sym_metavariable] = ACTIONS(2968), - [sym__raw_string_literal_start] = ACTIONS(2968), - [sym_float_literal] = ACTIONS(2968), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_macro_rules_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_u8] = ACTIONS(2968), + [anon_sym_i8] = ACTIONS(2968), + [anon_sym_u16] = ACTIONS(2968), + [anon_sym_i16] = ACTIONS(2968), + [anon_sym_u32] = ACTIONS(2968), + [anon_sym_i32] = ACTIONS(2968), + [anon_sym_u64] = ACTIONS(2968), + [anon_sym_i64] = ACTIONS(2968), + [anon_sym_u128] = ACTIONS(2968), + [anon_sym_i128] = ACTIONS(2968), + [anon_sym_isize] = ACTIONS(2968), + [anon_sym_usize] = ACTIONS(2968), + [anon_sym_f32] = ACTIONS(2968), + [anon_sym_f64] = ACTIONS(2968), + [anon_sym_bool] = ACTIONS(2968), + [anon_sym_str] = ACTIONS(2968), + [anon_sym_char] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2968), + [anon_sym_enum] = ACTIONS(2968), + [anon_sym_fn] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_gen] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_impl] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2968), + [anon_sym_loop] = ACTIONS(2968), + [anon_sym_match] = ACTIONS(2968), + [anon_sym_mod] = ACTIONS(2968), + [anon_sym_pub] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2968), + [anon_sym_trait] = ACTIONS(2968), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_union] = ACTIONS(2968), + [anon_sym_unsafe] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2968), + [anon_sym_while] = ACTIONS(2968), + [anon_sym_extern] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2968), + [anon_sym_move] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2968), + [sym_integer_literal] = ACTIONS(2966), + [aux_sym_string_literal_token1] = ACTIONS(2966), + [sym_char_literal] = ACTIONS(2966), + [anon_sym_true] = ACTIONS(2968), + [anon_sym_false] = ACTIONS(2968), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2968), + [sym_super] = ACTIONS(2968), + [sym_crate] = ACTIONS(2968), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(2966), + [sym_float_literal] = ACTIONS(2966), }, [STATE(765)] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2974), - [anon_sym_SEMI] = ACTIONS(2972), - [anon_sym_macro_rules_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_u8] = ACTIONS(2974), - [anon_sym_i8] = ACTIONS(2974), - [anon_sym_u16] = ACTIONS(2974), - [anon_sym_i16] = ACTIONS(2974), - [anon_sym_u32] = ACTIONS(2974), - [anon_sym_i32] = ACTIONS(2974), - [anon_sym_u64] = ACTIONS(2974), - [anon_sym_i64] = ACTIONS(2974), - [anon_sym_u128] = ACTIONS(2974), - [anon_sym_i128] = ACTIONS(2974), - [anon_sym_isize] = ACTIONS(2974), - [anon_sym_usize] = ACTIONS(2974), - [anon_sym_f32] = ACTIONS(2974), - [anon_sym_f64] = ACTIONS(2974), - [anon_sym_bool] = ACTIONS(2974), - [anon_sym_str] = ACTIONS(2974), - [anon_sym_char] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_BANG] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_PIPE] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_DOT_DOT] = ACTIONS(2972), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_POUND] = ACTIONS(2972), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_async] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_const] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_default] = ACTIONS(2974), - [anon_sym_enum] = ACTIONS(2974), - [anon_sym_fn] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_gen] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_impl] = ACTIONS(2974), - [anon_sym_let] = ACTIONS(2974), - [anon_sym_loop] = ACTIONS(2974), - [anon_sym_match] = ACTIONS(2974), - [anon_sym_mod] = ACTIONS(2974), - [anon_sym_pub] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_static] = ACTIONS(2974), - [anon_sym_struct] = ACTIONS(2974), - [anon_sym_trait] = ACTIONS(2974), - [anon_sym_type] = ACTIONS(2974), - [anon_sym_union] = ACTIONS(2974), - [anon_sym_unsafe] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2974), - [anon_sym_while] = ACTIONS(2974), - [anon_sym_extern] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2974), - [anon_sym_move] = ACTIONS(2974), - [anon_sym_try] = ACTIONS(2974), - [sym_integer_literal] = ACTIONS(2972), - [aux_sym_string_literal_token1] = ACTIONS(2972), - [sym_char_literal] = ACTIONS(2972), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2974), - [sym_super] = ACTIONS(2974), - [sym_crate] = ACTIONS(2974), - [sym_metavariable] = ACTIONS(2972), - [sym__raw_string_literal_start] = ACTIONS(2972), - [sym_float_literal] = ACTIONS(2972), + [ts_builtin_sym_end] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2970), + [anon_sym_macro_rules_BANG] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2970), + [anon_sym_u8] = ACTIONS(2972), + [anon_sym_i8] = ACTIONS(2972), + [anon_sym_u16] = ACTIONS(2972), + [anon_sym_i16] = ACTIONS(2972), + [anon_sym_u32] = ACTIONS(2972), + [anon_sym_i32] = ACTIONS(2972), + [anon_sym_u64] = ACTIONS(2972), + [anon_sym_i64] = ACTIONS(2972), + [anon_sym_u128] = ACTIONS(2972), + [anon_sym_i128] = ACTIONS(2972), + [anon_sym_isize] = ACTIONS(2972), + [anon_sym_usize] = ACTIONS(2972), + [anon_sym_f32] = ACTIONS(2972), + [anon_sym_f64] = ACTIONS(2972), + [anon_sym_bool] = ACTIONS(2972), + [anon_sym_str] = ACTIONS(2972), + [anon_sym_char] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_DOT_DOT] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_async] = ACTIONS(2972), + [anon_sym_break] = ACTIONS(2972), + [anon_sym_const] = ACTIONS(2972), + [anon_sym_continue] = ACTIONS(2972), + [anon_sym_default] = ACTIONS(2972), + [anon_sym_enum] = ACTIONS(2972), + [anon_sym_fn] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2972), + [anon_sym_gen] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_impl] = ACTIONS(2972), + [anon_sym_let] = ACTIONS(2972), + [anon_sym_loop] = ACTIONS(2972), + [anon_sym_match] = ACTIONS(2972), + [anon_sym_mod] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(2972), + [anon_sym_return] = ACTIONS(2972), + [anon_sym_static] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2972), + [anon_sym_trait] = ACTIONS(2972), + [anon_sym_type] = ACTIONS(2972), + [anon_sym_union] = ACTIONS(2972), + [anon_sym_unsafe] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2972), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_extern] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2972), + [anon_sym_move] = ACTIONS(2972), + [anon_sym_try] = ACTIONS(2972), + [sym_integer_literal] = ACTIONS(2970), + [aux_sym_string_literal_token1] = ACTIONS(2970), + [sym_char_literal] = ACTIONS(2970), + [anon_sym_true] = ACTIONS(2972), + [anon_sym_false] = ACTIONS(2972), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2970), + [sym__raw_string_literal_start] = ACTIONS(2970), + [sym_float_literal] = ACTIONS(2970), }, [STATE(766)] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2978), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_macro_rules_BANG] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_RBRACE] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_u8] = ACTIONS(2978), - [anon_sym_i8] = ACTIONS(2978), - [anon_sym_u16] = ACTIONS(2978), - [anon_sym_i16] = ACTIONS(2978), - [anon_sym_u32] = ACTIONS(2978), - [anon_sym_i32] = ACTIONS(2978), - [anon_sym_u64] = ACTIONS(2978), - [anon_sym_i64] = ACTIONS(2978), - [anon_sym_u128] = ACTIONS(2978), - [anon_sym_i128] = ACTIONS(2978), - [anon_sym_isize] = ACTIONS(2978), - [anon_sym_usize] = ACTIONS(2978), - [anon_sym_f32] = ACTIONS(2978), - [anon_sym_f64] = ACTIONS(2978), - [anon_sym_bool] = ACTIONS(2978), - [anon_sym_str] = ACTIONS(2978), - [anon_sym_char] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_DOT_DOT] = ACTIONS(2976), - [anon_sym_COLON_COLON] = ACTIONS(2976), - [anon_sym_POUND] = ACTIONS(2976), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_async] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_const] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_default] = ACTIONS(2978), - [anon_sym_enum] = ACTIONS(2978), - [anon_sym_fn] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_gen] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_impl] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2978), - [anon_sym_loop] = ACTIONS(2978), - [anon_sym_match] = ACTIONS(2978), - [anon_sym_mod] = ACTIONS(2978), - [anon_sym_pub] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_static] = ACTIONS(2978), - [anon_sym_struct] = ACTIONS(2978), - [anon_sym_trait] = ACTIONS(2978), - [anon_sym_type] = ACTIONS(2978), - [anon_sym_union] = ACTIONS(2978), - [anon_sym_unsafe] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2978), - [anon_sym_while] = ACTIONS(2978), - [anon_sym_extern] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2978), - [anon_sym_move] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2978), - [sym_integer_literal] = ACTIONS(2976), - [aux_sym_string_literal_token1] = ACTIONS(2976), - [sym_char_literal] = ACTIONS(2976), - [anon_sym_true] = ACTIONS(2978), - [anon_sym_false] = ACTIONS(2978), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2978), - [sym_super] = ACTIONS(2978), - [sym_crate] = ACTIONS(2978), - [sym_metavariable] = ACTIONS(2976), - [sym__raw_string_literal_start] = ACTIONS(2976), - [sym_float_literal] = ACTIONS(2976), + [ts_builtin_sym_end] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_macro_rules_BANG] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_RBRACE] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_u8] = ACTIONS(2976), + [anon_sym_i8] = ACTIONS(2976), + [anon_sym_u16] = ACTIONS(2976), + [anon_sym_i16] = ACTIONS(2976), + [anon_sym_u32] = ACTIONS(2976), + [anon_sym_i32] = ACTIONS(2976), + [anon_sym_u64] = ACTIONS(2976), + [anon_sym_i64] = ACTIONS(2976), + [anon_sym_u128] = ACTIONS(2976), + [anon_sym_i128] = ACTIONS(2976), + [anon_sym_isize] = ACTIONS(2976), + [anon_sym_usize] = ACTIONS(2976), + [anon_sym_f32] = ACTIONS(2976), + [anon_sym_f64] = ACTIONS(2976), + [anon_sym_bool] = ACTIONS(2976), + [anon_sym_str] = ACTIONS(2976), + [anon_sym_char] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_DOT_DOT] = ACTIONS(2974), + [anon_sym_COLON_COLON] = ACTIONS(2974), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_async] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_fn] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_gen] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_impl] = ACTIONS(2976), + [anon_sym_let] = ACTIONS(2976), + [anon_sym_loop] = ACTIONS(2976), + [anon_sym_match] = ACTIONS(2976), + [anon_sym_mod] = ACTIONS(2976), + [anon_sym_pub] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_trait] = ACTIONS(2976), + [anon_sym_type] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_unsafe] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2976), + [anon_sym_move] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [sym_integer_literal] = ACTIONS(2974), + [aux_sym_string_literal_token1] = ACTIONS(2974), + [sym_char_literal] = ACTIONS(2974), + [anon_sym_true] = ACTIONS(2976), + [anon_sym_false] = ACTIONS(2976), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2976), + [sym_super] = ACTIONS(2976), + [sym_crate] = ACTIONS(2976), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(2974), + [sym_float_literal] = ACTIONS(2974), }, [STATE(767)] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2982), - [anon_sym_SEMI] = ACTIONS(2980), - [anon_sym_macro_rules_BANG] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_RBRACE] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_u8] = ACTIONS(2982), - [anon_sym_i8] = ACTIONS(2982), - [anon_sym_u16] = ACTIONS(2982), - [anon_sym_i16] = ACTIONS(2982), - [anon_sym_u32] = ACTIONS(2982), - [anon_sym_i32] = ACTIONS(2982), - [anon_sym_u64] = ACTIONS(2982), - [anon_sym_i64] = ACTIONS(2982), - [anon_sym_u128] = ACTIONS(2982), - [anon_sym_i128] = ACTIONS(2982), - [anon_sym_isize] = ACTIONS(2982), - [anon_sym_usize] = ACTIONS(2982), - [anon_sym_f32] = ACTIONS(2982), - [anon_sym_f64] = ACTIONS(2982), - [anon_sym_bool] = ACTIONS(2982), - [anon_sym_str] = ACTIONS(2982), - [anon_sym_char] = ACTIONS(2982), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2980), - [anon_sym_DOT_DOT] = ACTIONS(2980), - [anon_sym_COLON_COLON] = ACTIONS(2980), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_async] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_default] = ACTIONS(2982), - [anon_sym_enum] = ACTIONS(2982), - [anon_sym_fn] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_gen] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_impl] = ACTIONS(2982), - [anon_sym_let] = ACTIONS(2982), - [anon_sym_loop] = ACTIONS(2982), - [anon_sym_match] = ACTIONS(2982), - [anon_sym_mod] = ACTIONS(2982), - [anon_sym_pub] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_struct] = ACTIONS(2982), - [anon_sym_trait] = ACTIONS(2982), - [anon_sym_type] = ACTIONS(2982), - [anon_sym_union] = ACTIONS(2982), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2982), - [anon_sym_while] = ACTIONS(2982), - [anon_sym_extern] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2982), - [anon_sym_move] = ACTIONS(2982), - [anon_sym_try] = ACTIONS(2982), - [sym_integer_literal] = ACTIONS(2980), - [aux_sym_string_literal_token1] = ACTIONS(2980), - [sym_char_literal] = ACTIONS(2980), - [anon_sym_true] = ACTIONS(2982), - [anon_sym_false] = ACTIONS(2982), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2982), - [sym_super] = ACTIONS(2982), - [sym_crate] = ACTIONS(2982), - [sym_metavariable] = ACTIONS(2980), - [sym__raw_string_literal_start] = ACTIONS(2980), - [sym_float_literal] = ACTIONS(2980), + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_macro_rules_BANG] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_u8] = ACTIONS(2980), + [anon_sym_i8] = ACTIONS(2980), + [anon_sym_u16] = ACTIONS(2980), + [anon_sym_i16] = ACTIONS(2980), + [anon_sym_u32] = ACTIONS(2980), + [anon_sym_i32] = ACTIONS(2980), + [anon_sym_u64] = ACTIONS(2980), + [anon_sym_i64] = ACTIONS(2980), + [anon_sym_u128] = ACTIONS(2980), + [anon_sym_i128] = ACTIONS(2980), + [anon_sym_isize] = ACTIONS(2980), + [anon_sym_usize] = ACTIONS(2980), + [anon_sym_f32] = ACTIONS(2980), + [anon_sym_f64] = ACTIONS(2980), + [anon_sym_bool] = ACTIONS(2980), + [anon_sym_str] = ACTIONS(2980), + [anon_sym_char] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_DOT_DOT] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_gen] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_impl] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_loop] = ACTIONS(2980), + [anon_sym_match] = ACTIONS(2980), + [anon_sym_mod] = ACTIONS(2980), + [anon_sym_pub] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_trait] = ACTIONS(2980), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_unsafe] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2980), + [anon_sym_move] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [sym_integer_literal] = ACTIONS(2978), + [aux_sym_string_literal_token1] = ACTIONS(2978), + [sym_char_literal] = ACTIONS(2978), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2980), + [sym_super] = ACTIONS(2980), + [sym_crate] = ACTIONS(2980), + [sym_metavariable] = ACTIONS(2978), + [sym__raw_string_literal_start] = ACTIONS(2978), + [sym_float_literal] = ACTIONS(2978), }, [STATE(768)] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2984), - [anon_sym_macro_rules_BANG] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_u8] = ACTIONS(2986), - [anon_sym_i8] = ACTIONS(2986), - [anon_sym_u16] = ACTIONS(2986), - [anon_sym_i16] = ACTIONS(2986), - [anon_sym_u32] = ACTIONS(2986), - [anon_sym_i32] = ACTIONS(2986), - [anon_sym_u64] = ACTIONS(2986), - [anon_sym_i64] = ACTIONS(2986), - [anon_sym_u128] = ACTIONS(2986), - [anon_sym_i128] = ACTIONS(2986), - [anon_sym_isize] = ACTIONS(2986), - [anon_sym_usize] = ACTIONS(2986), - [anon_sym_f32] = ACTIONS(2986), - [anon_sym_f64] = ACTIONS(2986), - [anon_sym_bool] = ACTIONS(2986), - [anon_sym_str] = ACTIONS(2986), - [anon_sym_char] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_DOT_DOT] = ACTIONS(2984), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_POUND] = ACTIONS(2984), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_async] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_enum] = ACTIONS(2986), - [anon_sym_fn] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_gen] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_impl] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_mod] = ACTIONS(2986), - [anon_sym_pub] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_struct] = ACTIONS(2986), - [anon_sym_trait] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_union] = ACTIONS(2986), - [anon_sym_unsafe] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_move] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [sym_integer_literal] = ACTIONS(2984), - [aux_sym_string_literal_token1] = ACTIONS(2984), - [sym_char_literal] = ACTIONS(2984), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2986), - [sym_super] = ACTIONS(2986), - [sym_crate] = ACTIONS(2986), - [sym_metavariable] = ACTIONS(2984), - [sym__raw_string_literal_start] = ACTIONS(2984), - [sym_float_literal] = ACTIONS(2984), + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_identifier] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_macro_rules_BANG] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_u8] = ACTIONS(2984), + [anon_sym_i8] = ACTIONS(2984), + [anon_sym_u16] = ACTIONS(2984), + [anon_sym_i16] = ACTIONS(2984), + [anon_sym_u32] = ACTIONS(2984), + [anon_sym_i32] = ACTIONS(2984), + [anon_sym_u64] = ACTIONS(2984), + [anon_sym_i64] = ACTIONS(2984), + [anon_sym_u128] = ACTIONS(2984), + [anon_sym_i128] = ACTIONS(2984), + [anon_sym_isize] = ACTIONS(2984), + [anon_sym_usize] = ACTIONS(2984), + [anon_sym_f32] = ACTIONS(2984), + [anon_sym_f64] = ACTIONS(2984), + [anon_sym_bool] = ACTIONS(2984), + [anon_sym_str] = ACTIONS(2984), + [anon_sym_char] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_DOT_DOT] = ACTIONS(2982), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_POUND] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_async] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_gen] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_impl] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_loop] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_mod] = ACTIONS(2984), + [anon_sym_pub] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_trait] = ACTIONS(2984), + [anon_sym_type] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2984), + [anon_sym_move] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [sym_integer_literal] = ACTIONS(2982), + [aux_sym_string_literal_token1] = ACTIONS(2982), + [sym_char_literal] = ACTIONS(2982), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2984), + [sym_super] = ACTIONS(2984), + [sym_crate] = ACTIONS(2984), + [sym_metavariable] = ACTIONS(2982), + [sym__raw_string_literal_start] = ACTIONS(2982), + [sym_float_literal] = ACTIONS(2982), }, [STATE(769)] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_macro_rules_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_u8] = ACTIONS(2990), - [anon_sym_i8] = ACTIONS(2990), - [anon_sym_u16] = ACTIONS(2990), - [anon_sym_i16] = ACTIONS(2990), - [anon_sym_u32] = ACTIONS(2990), - [anon_sym_i32] = ACTIONS(2990), - [anon_sym_u64] = ACTIONS(2990), - [anon_sym_i64] = ACTIONS(2990), - [anon_sym_u128] = ACTIONS(2990), - [anon_sym_i128] = ACTIONS(2990), - [anon_sym_isize] = ACTIONS(2990), - [anon_sym_usize] = ACTIONS(2990), - [anon_sym_f32] = ACTIONS(2990), - [anon_sym_f64] = ACTIONS(2990), - [anon_sym_bool] = ACTIONS(2990), - [anon_sym_str] = ACTIONS(2990), - [anon_sym_char] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_BANG] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_PIPE] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_POUND] = ACTIONS(2988), - [anon_sym_SQUOTE] = ACTIONS(2990), - [anon_sym_async] = ACTIONS(2990), - [anon_sym_break] = ACTIONS(2990), - [anon_sym_const] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(2990), - [anon_sym_default] = ACTIONS(2990), - [anon_sym_enum] = ACTIONS(2990), - [anon_sym_fn] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_gen] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_impl] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_loop] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_mod] = ACTIONS(2990), - [anon_sym_pub] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_struct] = ACTIONS(2990), - [anon_sym_trait] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_union] = ACTIONS(2990), - [anon_sym_unsafe] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_extern] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_move] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [sym_integer_literal] = ACTIONS(2988), - [aux_sym_string_literal_token1] = ACTIONS(2988), - [sym_char_literal] = ACTIONS(2988), - [anon_sym_true] = ACTIONS(2990), - [anon_sym_false] = ACTIONS(2990), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2990), - [sym_super] = ACTIONS(2990), - [sym_crate] = ACTIONS(2990), - [sym_metavariable] = ACTIONS(2988), - [sym__raw_string_literal_start] = ACTIONS(2988), - [sym_float_literal] = ACTIONS(2988), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_macro_rules_BANG] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_u8] = ACTIONS(2988), + [anon_sym_i8] = ACTIONS(2988), + [anon_sym_u16] = ACTIONS(2988), + [anon_sym_i16] = ACTIONS(2988), + [anon_sym_u32] = ACTIONS(2988), + [anon_sym_i32] = ACTIONS(2988), + [anon_sym_u64] = ACTIONS(2988), + [anon_sym_i64] = ACTIONS(2988), + [anon_sym_u128] = ACTIONS(2988), + [anon_sym_i128] = ACTIONS(2988), + [anon_sym_isize] = ACTIONS(2988), + [anon_sym_usize] = ACTIONS(2988), + [anon_sym_f32] = ACTIONS(2988), + [anon_sym_f64] = ACTIONS(2988), + [anon_sym_bool] = ACTIONS(2988), + [anon_sym_str] = ACTIONS(2988), + [anon_sym_char] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2986), + [anon_sym_PIPE] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_DOT_DOT] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_POUND] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_async] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_fn] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_gen] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_impl] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_loop] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_mod] = ACTIONS(2988), + [anon_sym_pub] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_trait] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_unsafe] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_move] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [sym_integer_literal] = ACTIONS(2986), + [aux_sym_string_literal_token1] = ACTIONS(2986), + [sym_char_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2988), + [sym_super] = ACTIONS(2988), + [sym_crate] = ACTIONS(2988), + [sym_metavariable] = ACTIONS(2986), + [sym__raw_string_literal_start] = ACTIONS(2986), + [sym_float_literal] = ACTIONS(2986), }, [STATE(770)] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [ts_builtin_sym_end] = ACTIONS(2992), - [sym_identifier] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_macro_rules_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_u8] = ACTIONS(2994), - [anon_sym_i8] = ACTIONS(2994), - [anon_sym_u16] = ACTIONS(2994), - [anon_sym_i16] = ACTIONS(2994), - [anon_sym_u32] = ACTIONS(2994), - [anon_sym_i32] = ACTIONS(2994), - [anon_sym_u64] = ACTIONS(2994), - [anon_sym_i64] = ACTIONS(2994), - [anon_sym_u128] = ACTIONS(2994), - [anon_sym_i128] = ACTIONS(2994), - [anon_sym_isize] = ACTIONS(2994), - [anon_sym_usize] = ACTIONS(2994), - [anon_sym_f32] = ACTIONS(2994), - [anon_sym_f64] = ACTIONS(2994), - [anon_sym_bool] = ACTIONS(2994), - [anon_sym_str] = ACTIONS(2994), - [anon_sym_char] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_POUND] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_const] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_default] = ACTIONS(2994), - [anon_sym_enum] = ACTIONS(2994), - [anon_sym_fn] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2994), - [anon_sym_gen] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_impl] = ACTIONS(2994), - [anon_sym_let] = ACTIONS(2994), - [anon_sym_loop] = ACTIONS(2994), - [anon_sym_match] = ACTIONS(2994), - [anon_sym_mod] = ACTIONS(2994), - [anon_sym_pub] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2994), - [anon_sym_struct] = ACTIONS(2994), - [anon_sym_trait] = ACTIONS(2994), - [anon_sym_type] = ACTIONS(2994), - [anon_sym_union] = ACTIONS(2994), - [anon_sym_unsafe] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2994), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_extern] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2994), - [anon_sym_move] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [aux_sym_string_literal_token1] = ACTIONS(2992), - [sym_char_literal] = ACTIONS(2992), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2994), - [sym_super] = ACTIONS(2994), - [sym_crate] = ACTIONS(2994), - [sym_metavariable] = ACTIONS(2992), - [sym__raw_string_literal_start] = ACTIONS(2992), - [sym_float_literal] = ACTIONS(2992), + [ts_builtin_sym_end] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_macro_rules_BANG] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_u8] = ACTIONS(2992), + [anon_sym_i8] = ACTIONS(2992), + [anon_sym_u16] = ACTIONS(2992), + [anon_sym_i16] = ACTIONS(2992), + [anon_sym_u32] = ACTIONS(2992), + [anon_sym_i32] = ACTIONS(2992), + [anon_sym_u64] = ACTIONS(2992), + [anon_sym_i64] = ACTIONS(2992), + [anon_sym_u128] = ACTIONS(2992), + [anon_sym_i128] = ACTIONS(2992), + [anon_sym_isize] = ACTIONS(2992), + [anon_sym_usize] = ACTIONS(2992), + [anon_sym_f32] = ACTIONS(2992), + [anon_sym_f64] = ACTIONS(2992), + [anon_sym_bool] = ACTIONS(2992), + [anon_sym_str] = ACTIONS(2992), + [anon_sym_char] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2990), + [anon_sym_PIPE] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_POUND] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2992), + [anon_sym_async] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_gen] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_impl] = ACTIONS(2992), + [anon_sym_let] = ACTIONS(2992), + [anon_sym_loop] = ACTIONS(2992), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_mod] = ACTIONS(2992), + [anon_sym_pub] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_trait] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_use] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym_yield] = ACTIONS(2992), + [anon_sym_move] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [sym_integer_literal] = ACTIONS(2990), + [aux_sym_string_literal_token1] = ACTIONS(2990), + [sym_char_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2992), + [anon_sym_false] = ACTIONS(2992), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2992), + [sym_super] = ACTIONS(2992), + [sym_crate] = ACTIONS(2992), + [sym_metavariable] = ACTIONS(2990), + [sym__raw_string_literal_start] = ACTIONS(2990), + [sym_float_literal] = ACTIONS(2990), }, [STATE(771)] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(2996), - [sym_identifier] = ACTIONS(2998), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_macro_rules_BANG] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2996), - [anon_sym_u8] = ACTIONS(2998), - [anon_sym_i8] = ACTIONS(2998), - [anon_sym_u16] = ACTIONS(2998), - [anon_sym_i16] = ACTIONS(2998), - [anon_sym_u32] = ACTIONS(2998), - [anon_sym_i32] = ACTIONS(2998), - [anon_sym_u64] = ACTIONS(2998), - [anon_sym_i64] = ACTIONS(2998), - [anon_sym_u128] = ACTIONS(2998), - [anon_sym_i128] = ACTIONS(2998), - [anon_sym_isize] = ACTIONS(2998), - [anon_sym_usize] = ACTIONS(2998), - [anon_sym_f32] = ACTIONS(2998), - [anon_sym_f64] = ACTIONS(2998), - [anon_sym_bool] = ACTIONS(2998), - [anon_sym_str] = ACTIONS(2998), - [anon_sym_char] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_BANG] = ACTIONS(2996), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_DOT_DOT] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(2996), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_async] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_const] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_enum] = ACTIONS(2998), - [anon_sym_fn] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_gen] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_impl] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_loop] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_mod] = ACTIONS(2998), - [anon_sym_pub] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2998), - [anon_sym_struct] = ACTIONS(2998), - [anon_sym_trait] = ACTIONS(2998), - [anon_sym_type] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_unsafe] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_extern] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_move] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [sym_integer_literal] = ACTIONS(2996), - [aux_sym_string_literal_token1] = ACTIONS(2996), - [sym_char_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2998), - [sym_super] = ACTIONS(2998), - [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(2996), - [sym__raw_string_literal_start] = ACTIONS(2996), - [sym_float_literal] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(2994), + [sym_identifier] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_macro_rules_BANG] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_u8] = ACTIONS(2996), + [anon_sym_i8] = ACTIONS(2996), + [anon_sym_u16] = ACTIONS(2996), + [anon_sym_i16] = ACTIONS(2996), + [anon_sym_u32] = ACTIONS(2996), + [anon_sym_i32] = ACTIONS(2996), + [anon_sym_u64] = ACTIONS(2996), + [anon_sym_i64] = ACTIONS(2996), + [anon_sym_u128] = ACTIONS(2996), + [anon_sym_i128] = ACTIONS(2996), + [anon_sym_isize] = ACTIONS(2996), + [anon_sym_usize] = ACTIONS(2996), + [anon_sym_f32] = ACTIONS(2996), + [anon_sym_f64] = ACTIONS(2996), + [anon_sym_bool] = ACTIONS(2996), + [anon_sym_str] = ACTIONS(2996), + [anon_sym_char] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_DOT_DOT] = ACTIONS(2994), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_POUND] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2996), + [anon_sym_async] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_fn] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_gen] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_impl] = ACTIONS(2996), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_loop] = ACTIONS(2996), + [anon_sym_match] = ACTIONS(2996), + [anon_sym_mod] = ACTIONS(2996), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_trait] = ACTIONS(2996), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_unsafe] = ACTIONS(2996), + [anon_sym_use] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym_yield] = ACTIONS(2996), + [anon_sym_move] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [sym_integer_literal] = ACTIONS(2994), + [aux_sym_string_literal_token1] = ACTIONS(2994), + [sym_char_literal] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2996), + [anon_sym_false] = ACTIONS(2996), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2996), + [sym_super] = ACTIONS(2996), + [sym_crate] = ACTIONS(2996), + [sym_metavariable] = ACTIONS(2994), + [sym__raw_string_literal_start] = ACTIONS(2994), + [sym_float_literal] = ACTIONS(2994), }, [STATE(772)] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3002), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_macro_rules_BANG] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3000), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(3000), - [anon_sym_u8] = ACTIONS(3002), - [anon_sym_i8] = ACTIONS(3002), - [anon_sym_u16] = ACTIONS(3002), - [anon_sym_i16] = ACTIONS(3002), - [anon_sym_u32] = ACTIONS(3002), - [anon_sym_i32] = ACTIONS(3002), - [anon_sym_u64] = ACTIONS(3002), - [anon_sym_i64] = ACTIONS(3002), - [anon_sym_u128] = ACTIONS(3002), - [anon_sym_i128] = ACTIONS(3002), - [anon_sym_isize] = ACTIONS(3002), - [anon_sym_usize] = ACTIONS(3002), - [anon_sym_f32] = ACTIONS(3002), - [anon_sym_f64] = ACTIONS(3002), - [anon_sym_bool] = ACTIONS(3002), - [anon_sym_str] = ACTIONS(3002), - [anon_sym_char] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3000), - [anon_sym_BANG] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(3000), - [anon_sym_PIPE] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_POUND] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3002), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_const] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_default] = ACTIONS(3002), - [anon_sym_enum] = ACTIONS(3002), - [anon_sym_fn] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_gen] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_impl] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_loop] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_mod] = ACTIONS(3002), - [anon_sym_pub] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_struct] = ACTIONS(3002), - [anon_sym_trait] = ACTIONS(3002), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_union] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_extern] = ACTIONS(3002), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_move] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [sym_integer_literal] = ACTIONS(3000), - [aux_sym_string_literal_token1] = ACTIONS(3000), - [sym_char_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(3002), - [anon_sym_false] = ACTIONS(3002), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3002), - [sym_super] = ACTIONS(3002), - [sym_crate] = ACTIONS(3002), - [sym_metavariable] = ACTIONS(3000), - [sym__raw_string_literal_start] = ACTIONS(3000), - [sym_float_literal] = ACTIONS(3000), + [ts_builtin_sym_end] = ACTIONS(2998), + [sym_identifier] = ACTIONS(3000), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_macro_rules_BANG] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_u8] = ACTIONS(3000), + [anon_sym_i8] = ACTIONS(3000), + [anon_sym_u16] = ACTIONS(3000), + [anon_sym_i16] = ACTIONS(3000), + [anon_sym_u32] = ACTIONS(3000), + [anon_sym_i32] = ACTIONS(3000), + [anon_sym_u64] = ACTIONS(3000), + [anon_sym_i64] = ACTIONS(3000), + [anon_sym_u128] = ACTIONS(3000), + [anon_sym_i128] = ACTIONS(3000), + [anon_sym_isize] = ACTIONS(3000), + [anon_sym_usize] = ACTIONS(3000), + [anon_sym_f32] = ACTIONS(3000), + [anon_sym_f64] = ACTIONS(3000), + [anon_sym_bool] = ACTIONS(3000), + [anon_sym_str] = ACTIONS(3000), + [anon_sym_char] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_LT] = ACTIONS(2998), + [anon_sym_DOT_DOT] = ACTIONS(2998), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_async] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_default] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_fn] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_gen] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_impl] = ACTIONS(3000), + [anon_sym_let] = ACTIONS(3000), + [anon_sym_loop] = ACTIONS(3000), + [anon_sym_match] = ACTIONS(3000), + [anon_sym_mod] = ACTIONS(3000), + [anon_sym_pub] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_trait] = ACTIONS(3000), + [anon_sym_type] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_unsafe] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(3000), + [anon_sym_move] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [sym_integer_literal] = ACTIONS(2998), + [aux_sym_string_literal_token1] = ACTIONS(2998), + [sym_char_literal] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(3000), + [anon_sym_false] = ACTIONS(3000), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3000), + [sym_super] = ACTIONS(3000), + [sym_crate] = ACTIONS(3000), + [sym_metavariable] = ACTIONS(2998), + [sym__raw_string_literal_start] = ACTIONS(2998), + [sym_float_literal] = ACTIONS(2998), }, [STATE(773)] = { - [sym_empty_statement] = STATE(1327), - [sym_macro_definition] = STATE(1327), - [sym_attribute_item] = STATE(1327), - [sym_inner_attribute_item] = STATE(1327), - [sym_mod_item] = STATE(1327), - [sym_foreign_mod_item] = STATE(1327), - [sym_struct_item] = STATE(1327), - [sym_union_item] = STATE(1327), - [sym_enum_item] = STATE(1327), - [sym_extern_crate_declaration] = STATE(1327), - [sym_const_item] = STATE(1327), - [sym_static_item] = STATE(1327), - [sym_type_item] = STATE(1327), - [sym_function_item] = STATE(1327), - [sym_function_signature_item] = STATE(1327), - [sym_function_modifiers] = STATE(3675), - [sym_impl_item] = STATE(1327), - [sym_trait_item] = STATE(1327), - [sym_associated_type] = STATE(1327), - [sym_let_declaration] = STATE(1327), - [sym_use_declaration] = STATE(1327), - [sym_extern_modifier] = STATE(2174), - [sym_visibility_modifier] = STATE(1971), - [sym_bracketed_type] = STATE(3402), - [sym_generic_type_with_turbofish] = STATE(3427), - [sym_macro_invocation] = STATE(1327), - [sym_scoped_identifier] = STATE(3358), [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [aux_sym_declaration_list_repeat1] = STATE(555), + [ts_builtin_sym_end] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_macro_rules_BANG] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_RBRACE] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_u8] = ACTIONS(3004), + [anon_sym_i8] = ACTIONS(3004), + [anon_sym_u16] = ACTIONS(3004), + [anon_sym_i16] = ACTIONS(3004), + [anon_sym_u32] = ACTIONS(3004), + [anon_sym_i32] = ACTIONS(3004), + [anon_sym_u64] = ACTIONS(3004), + [anon_sym_i64] = ACTIONS(3004), + [anon_sym_u128] = ACTIONS(3004), + [anon_sym_i128] = ACTIONS(3004), + [anon_sym_isize] = ACTIONS(3004), + [anon_sym_usize] = ACTIONS(3004), + [anon_sym_f32] = ACTIONS(3004), + [anon_sym_f64] = ACTIONS(3004), + [anon_sym_bool] = ACTIONS(3004), + [anon_sym_str] = ACTIONS(3004), + [anon_sym_char] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [anon_sym_async] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_fn] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_gen] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_impl] = ACTIONS(3004), + [anon_sym_let] = ACTIONS(3004), + [anon_sym_loop] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_mod] = ACTIONS(3004), + [anon_sym_pub] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_trait] = ACTIONS(3004), + [anon_sym_type] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_unsafe] = ACTIONS(3004), + [anon_sym_use] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym_yield] = ACTIONS(3004), + [anon_sym_move] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [aux_sym_string_literal_token1] = ACTIONS(3002), + [sym_char_literal] = ACTIONS(3002), + [anon_sym_true] = ACTIONS(3004), + [anon_sym_false] = ACTIONS(3004), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3004), + [sym_super] = ACTIONS(3004), + [sym_crate] = ACTIONS(3004), + [sym_metavariable] = ACTIONS(3002), + [sym__raw_string_literal_start] = ACTIONS(3002), + [sym_float_literal] = ACTIONS(3002), + }, + [STATE(774)] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_macro_rules_BANG] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_u8] = ACTIONS(3008), + [anon_sym_i8] = ACTIONS(3008), + [anon_sym_u16] = ACTIONS(3008), + [anon_sym_i16] = ACTIONS(3008), + [anon_sym_u32] = ACTIONS(3008), + [anon_sym_i32] = ACTIONS(3008), + [anon_sym_u64] = ACTIONS(3008), + [anon_sym_i64] = ACTIONS(3008), + [anon_sym_u128] = ACTIONS(3008), + [anon_sym_i128] = ACTIONS(3008), + [anon_sym_isize] = ACTIONS(3008), + [anon_sym_usize] = ACTIONS(3008), + [anon_sym_f32] = ACTIONS(3008), + [anon_sym_f64] = ACTIONS(3008), + [anon_sym_bool] = ACTIONS(3008), + [anon_sym_str] = ACTIONS(3008), + [anon_sym_char] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_POUND] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_fn] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_gen] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_impl] = ACTIONS(3008), + [anon_sym_let] = ACTIONS(3008), + [anon_sym_loop] = ACTIONS(3008), + [anon_sym_match] = ACTIONS(3008), + [anon_sym_mod] = ACTIONS(3008), + [anon_sym_pub] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_trait] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_unsafe] = ACTIONS(3008), + [anon_sym_use] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym_yield] = ACTIONS(3008), + [anon_sym_move] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [aux_sym_string_literal_token1] = ACTIONS(3006), + [sym_char_literal] = ACTIONS(3006), + [anon_sym_true] = ACTIONS(3008), + [anon_sym_false] = ACTIONS(3008), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3008), + [sym_super] = ACTIONS(3008), + [sym_crate] = ACTIONS(3008), + [sym_metavariable] = ACTIONS(3006), + [sym__raw_string_literal_start] = ACTIONS(3006), + [sym_float_literal] = ACTIONS(3006), + }, + [STATE(775)] = { + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_macro_rules_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_u8] = ACTIONS(3012), + [anon_sym_i8] = ACTIONS(3012), + [anon_sym_u16] = ACTIONS(3012), + [anon_sym_i16] = ACTIONS(3012), + [anon_sym_u32] = ACTIONS(3012), + [anon_sym_i32] = ACTIONS(3012), + [anon_sym_u64] = ACTIONS(3012), + [anon_sym_i64] = ACTIONS(3012), + [anon_sym_u128] = ACTIONS(3012), + [anon_sym_i128] = ACTIONS(3012), + [anon_sym_isize] = ACTIONS(3012), + [anon_sym_usize] = ACTIONS(3012), + [anon_sym_f32] = ACTIONS(3012), + [anon_sym_f64] = ACTIONS(3012), + [anon_sym_bool] = ACTIONS(3012), + [anon_sym_str] = ACTIONS(3012), + [anon_sym_char] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_DOT_DOT] = ACTIONS(3010), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3012), + [anon_sym_async] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_gen] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_impl] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_loop] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_mod] = ACTIONS(3012), + [anon_sym_pub] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_trait] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_unsafe] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_move] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [sym_integer_literal] = ACTIONS(3010), + [aux_sym_string_literal_token1] = ACTIONS(3010), + [sym_char_literal] = ACTIONS(3010), + [anon_sym_true] = ACTIONS(3012), + [anon_sym_false] = ACTIONS(3012), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3012), + [sym_super] = ACTIONS(3012), + [sym_crate] = ACTIONS(3012), + [sym_metavariable] = ACTIONS(3010), + [sym__raw_string_literal_start] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3010), + }, + [STATE(776)] = { + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_macro_rules_BANG] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_u8] = ACTIONS(3016), + [anon_sym_i8] = ACTIONS(3016), + [anon_sym_u16] = ACTIONS(3016), + [anon_sym_i16] = ACTIONS(3016), + [anon_sym_u32] = ACTIONS(3016), + [anon_sym_i32] = ACTIONS(3016), + [anon_sym_u64] = ACTIONS(3016), + [anon_sym_i64] = ACTIONS(3016), + [anon_sym_u128] = ACTIONS(3016), + [anon_sym_i128] = ACTIONS(3016), + [anon_sym_isize] = ACTIONS(3016), + [anon_sym_usize] = ACTIONS(3016), + [anon_sym_f32] = ACTIONS(3016), + [anon_sym_f64] = ACTIONS(3016), + [anon_sym_bool] = ACTIONS(3016), + [anon_sym_str] = ACTIONS(3016), + [anon_sym_char] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_DOT_DOT] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3016), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_fn] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_gen] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_impl] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), + [anon_sym_loop] = ACTIONS(3016), + [anon_sym_match] = ACTIONS(3016), + [anon_sym_mod] = ACTIONS(3016), + [anon_sym_pub] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_trait] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(3016), + [anon_sym_use] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym_yield] = ACTIONS(3016), + [anon_sym_move] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [sym_integer_literal] = ACTIONS(3014), + [aux_sym_string_literal_token1] = ACTIONS(3014), + [sym_char_literal] = ACTIONS(3014), + [anon_sym_true] = ACTIONS(3016), + [anon_sym_false] = ACTIONS(3016), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3016), + [sym_super] = ACTIONS(3016), + [sym_crate] = ACTIONS(3016), + [sym_metavariable] = ACTIONS(3014), + [sym__raw_string_literal_start] = ACTIONS(3014), + [sym_float_literal] = ACTIONS(3014), + }, + [STATE(777)] = { + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_macro_rules_BANG] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_u8] = ACTIONS(3020), + [anon_sym_i8] = ACTIONS(3020), + [anon_sym_u16] = ACTIONS(3020), + [anon_sym_i16] = ACTIONS(3020), + [anon_sym_u32] = ACTIONS(3020), + [anon_sym_i32] = ACTIONS(3020), + [anon_sym_u64] = ACTIONS(3020), + [anon_sym_i64] = ACTIONS(3020), + [anon_sym_u128] = ACTIONS(3020), + [anon_sym_i128] = ACTIONS(3020), + [anon_sym_isize] = ACTIONS(3020), + [anon_sym_usize] = ACTIONS(3020), + [anon_sym_f32] = ACTIONS(3020), + [anon_sym_f64] = ACTIONS(3020), + [anon_sym_bool] = ACTIONS(3020), + [anon_sym_str] = ACTIONS(3020), + [anon_sym_char] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_DOT_DOT] = ACTIONS(3018), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_POUND] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3020), + [anon_sym_async] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_gen] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_impl] = ACTIONS(3020), + [anon_sym_let] = ACTIONS(3020), + [anon_sym_loop] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_mod] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_trait] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_use] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym_yield] = ACTIONS(3020), + [anon_sym_move] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [sym_integer_literal] = ACTIONS(3018), + [aux_sym_string_literal_token1] = ACTIONS(3018), + [sym_char_literal] = ACTIONS(3018), + [anon_sym_true] = ACTIONS(3020), + [anon_sym_false] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3020), + [sym_super] = ACTIONS(3020), + [sym_crate] = ACTIONS(3020), + [sym_metavariable] = ACTIONS(3018), + [sym__raw_string_literal_start] = ACTIONS(3018), + [sym_float_literal] = ACTIONS(3018), + }, + [STATE(778)] = { + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_macro_rules_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_u8] = ACTIONS(3024), + [anon_sym_i8] = ACTIONS(3024), + [anon_sym_u16] = ACTIONS(3024), + [anon_sym_i16] = ACTIONS(3024), + [anon_sym_u32] = ACTIONS(3024), + [anon_sym_i32] = ACTIONS(3024), + [anon_sym_u64] = ACTIONS(3024), + [anon_sym_i64] = ACTIONS(3024), + [anon_sym_u128] = ACTIONS(3024), + [anon_sym_i128] = ACTIONS(3024), + [anon_sym_isize] = ACTIONS(3024), + [anon_sym_usize] = ACTIONS(3024), + [anon_sym_f32] = ACTIONS(3024), + [anon_sym_f64] = ACTIONS(3024), + [anon_sym_bool] = ACTIONS(3024), + [anon_sym_str] = ACTIONS(3024), + [anon_sym_char] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_DOT_DOT] = ACTIONS(3022), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_async] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_gen] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_impl] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_loop] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_mod] = ACTIONS(3024), + [anon_sym_pub] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_trait] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_move] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [sym_integer_literal] = ACTIONS(3022), + [aux_sym_string_literal_token1] = ACTIONS(3022), + [sym_char_literal] = ACTIONS(3022), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3024), + [sym_super] = ACTIONS(3024), + [sym_crate] = ACTIONS(3024), + [sym_metavariable] = ACTIONS(3022), + [sym__raw_string_literal_start] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3022), + }, + [STATE(779)] = { + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_macro_rules_BANG] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_u8] = ACTIONS(3028), + [anon_sym_i8] = ACTIONS(3028), + [anon_sym_u16] = ACTIONS(3028), + [anon_sym_i16] = ACTIONS(3028), + [anon_sym_u32] = ACTIONS(3028), + [anon_sym_i32] = ACTIONS(3028), + [anon_sym_u64] = ACTIONS(3028), + [anon_sym_i64] = ACTIONS(3028), + [anon_sym_u128] = ACTIONS(3028), + [anon_sym_i128] = ACTIONS(3028), + [anon_sym_isize] = ACTIONS(3028), + [anon_sym_usize] = ACTIONS(3028), + [anon_sym_f32] = ACTIONS(3028), + [anon_sym_f64] = ACTIONS(3028), + [anon_sym_bool] = ACTIONS(3028), + [anon_sym_str] = ACTIONS(3028), + [anon_sym_char] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3026), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3028), + [anon_sym_async] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_gen] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_impl] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3028), + [anon_sym_loop] = ACTIONS(3028), + [anon_sym_match] = ACTIONS(3028), + [anon_sym_mod] = ACTIONS(3028), + [anon_sym_pub] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_trait] = ACTIONS(3028), + [anon_sym_type] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_unsafe] = ACTIONS(3028), + [anon_sym_use] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym_yield] = ACTIONS(3028), + [anon_sym_move] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [sym_integer_literal] = ACTIONS(3026), + [aux_sym_string_literal_token1] = ACTIONS(3026), + [sym_char_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3028), + [anon_sym_false] = ACTIONS(3028), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3028), + [sym_super] = ACTIONS(3028), + [sym_crate] = ACTIONS(3028), + [sym_metavariable] = ACTIONS(3026), + [sym__raw_string_literal_start] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3026), + }, + [STATE(780)] = { + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_macro_rules_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_u8] = ACTIONS(3032), + [anon_sym_i8] = ACTIONS(3032), + [anon_sym_u16] = ACTIONS(3032), + [anon_sym_i16] = ACTIONS(3032), + [anon_sym_u32] = ACTIONS(3032), + [anon_sym_i32] = ACTIONS(3032), + [anon_sym_u64] = ACTIONS(3032), + [anon_sym_i64] = ACTIONS(3032), + [anon_sym_u128] = ACTIONS(3032), + [anon_sym_i128] = ACTIONS(3032), + [anon_sym_isize] = ACTIONS(3032), + [anon_sym_usize] = ACTIONS(3032), + [anon_sym_f32] = ACTIONS(3032), + [anon_sym_f64] = ACTIONS(3032), + [anon_sym_bool] = ACTIONS(3032), + [anon_sym_str] = ACTIONS(3032), + [anon_sym_char] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_DOT_DOT] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3032), + [anon_sym_async] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_fn] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_gen] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_loop] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_mod] = ACTIONS(3032), + [anon_sym_pub] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_trait] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_unsafe] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_move] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [sym_integer_literal] = ACTIONS(3030), + [aux_sym_string_literal_token1] = ACTIONS(3030), + [sym_char_literal] = ACTIONS(3030), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3032), + [sym_super] = ACTIONS(3032), + [sym_crate] = ACTIONS(3032), + [sym_metavariable] = ACTIONS(3030), + [sym__raw_string_literal_start] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3030), + }, + [STATE(781)] = { + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [ts_builtin_sym_end] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_macro_rules_BANG] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_u8] = ACTIONS(3036), + [anon_sym_i8] = ACTIONS(3036), + [anon_sym_u16] = ACTIONS(3036), + [anon_sym_i16] = ACTIONS(3036), + [anon_sym_u32] = ACTIONS(3036), + [anon_sym_i32] = ACTIONS(3036), + [anon_sym_u64] = ACTIONS(3036), + [anon_sym_i64] = ACTIONS(3036), + [anon_sym_u128] = ACTIONS(3036), + [anon_sym_i128] = ACTIONS(3036), + [anon_sym_isize] = ACTIONS(3036), + [anon_sym_usize] = ACTIONS(3036), + [anon_sym_f32] = ACTIONS(3036), + [anon_sym_f64] = ACTIONS(3036), + [anon_sym_bool] = ACTIONS(3036), + [anon_sym_str] = ACTIONS(3036), + [anon_sym_char] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_DOT_DOT] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3036), + [anon_sym_async] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_fn] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_gen] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_impl] = ACTIONS(3036), + [anon_sym_let] = ACTIONS(3036), + [anon_sym_loop] = ACTIONS(3036), + [anon_sym_match] = ACTIONS(3036), + [anon_sym_mod] = ACTIONS(3036), + [anon_sym_pub] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_trait] = ACTIONS(3036), + [anon_sym_type] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_unsafe] = ACTIONS(3036), + [anon_sym_use] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym_yield] = ACTIONS(3036), + [anon_sym_move] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [sym_integer_literal] = ACTIONS(3034), + [aux_sym_string_literal_token1] = ACTIONS(3034), + [sym_char_literal] = ACTIONS(3034), + [anon_sym_true] = ACTIONS(3036), + [anon_sym_false] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3036), + [sym_super] = ACTIONS(3036), + [sym_crate] = ACTIONS(3036), + [sym_metavariable] = ACTIONS(3034), + [sym__raw_string_literal_start] = ACTIONS(3034), + [sym_float_literal] = ACTIONS(3034), + }, + [STATE(782)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym_closure_expression] = STATE(3252), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(783)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2578), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(784)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_const_parameter] = STATE(3032), + [sym_type_parameter] = STATE(3032), + [sym_lifetime_parameter] = STATE(3032), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2967), + [sym_bracketed_type] = STATE(3448), + [sym_qualified_type] = STATE(3728), + [sym_lifetime] = STATE(2483), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(784), + [sym_block_comment] = STATE(784), + [aux_sym_enum_variant_list_repeat1] = STATE(2134), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(3004), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2190), - [anon_sym_gen] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2198), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2202), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2206), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2214), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(3050), + }, + [STATE(785)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(938), + [sym__type] = STATE(2583), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [aux_sym_enum_variant_list_repeat1] = STATE(831), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3062), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(786)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2615), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(786), + [sym_block_comment] = STATE(786), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(3064), + [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(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(787)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2765), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(787), + [sym_block_comment] = STATE(787), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1545), + [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(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2218), - [sym_metavariable] = ACTIONS(2220), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(774)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym_closure_expression] = STATE(3272), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2829), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(774), - [sym_block_comment] = STATE(774), + [STATE(788)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2636), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(788), + [sym_block_comment] = STATE(788), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(3068), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -93834,68 +95066,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(3070), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1431), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(775)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2757), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(775), - [sym_block_comment] = STATE(775), + [STATE(789)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2637), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(789), + [sym_block_comment] = STATE(789), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(3072), [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3006), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -93913,67 +95144,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(3074), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(776)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2628), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(776), - [sym_block_comment] = STATE(776), + [STATE(790)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2625), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(790), + [sym_block_comment] = STATE(790), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1545), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -93991,67 +95222,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(3078), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(777)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2670), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), + [STATE(791)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(791), + [sym_block_comment] = STATE(791), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3010), [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(3080), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -94069,66 +95300,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(3012), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(778)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [STATE(792)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(792), + [sym_block_comment] = STATE(792), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3014), + [anon_sym_RPAREN] = ACTIONS(3082), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -94147,144 +95377,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(3016), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(779)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_const_parameter] = STATE(2975), - [sym_type_parameter] = STATE(2975), - [sym_lifetime_parameter] = STATE(2975), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3034), - [sym_bracketed_type] = STATE(3410), - [sym_qualified_type] = STATE(3470), - [sym_lifetime] = STATE(2505), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), - [aux_sym_enum_variant_list_repeat1] = STATE(2077), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3022), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(3024), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(3026), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(780)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2734), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), + [STATE(793)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(793), + [sym_block_comment] = STATE(793), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3028), + [anon_sym_RPAREN] = ACTIONS(3084), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -94303,70 +95454,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(781)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(967), - [sym__type] = STATE(2721), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), - [aux_sym_enum_variant_list_repeat1] = STATE(811), + [STATE(794)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(794), + [sym_block_comment] = STATE(794), + [aux_sym_enum_variant_list_repeat1] = STATE(822), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3034), + [anon_sym_RPAREN] = ACTIONS(3086), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -94384,63 +95534,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3036), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), + [sym_crate] = ACTIONS(3062), [sym_metavariable] = ACTIONS(1621), }, - [STATE(782)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2776), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), + [STATE(795)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(795), + [sym_block_comment] = STATE(795), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_RPAREN] = ACTIONS(3088), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -94459,66 +95608,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(783)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(783), - [sym_block_comment] = STATE(783), + [STATE(796)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3090), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -94537,66 +95685,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(784)] = { - [sym_parameter] = STATE(3060), - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2547), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(784), - [sym_block_comment] = STATE(784), + [STATE(797)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(3092), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -94614,220 +95762,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(3052), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3054), + [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(785)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(965), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(785), - [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(814), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), + [STATE(798)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(3094), + [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(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(786)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(965), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(786), - [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(814), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), + [STATE(799)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(3096), + [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(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(787)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(787), - [sym_block_comment] = STATE(787), + [STATE(800)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(3098), [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3060), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -94845,65 +95993,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(788)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(788), - [sym_block_comment] = STATE(788), + [STATE(801)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3062), + [anon_sym_RPAREN] = ACTIONS(3100), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -94922,140 +96070,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(789)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(965), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(789), - [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(814), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), + [STATE(802)] = { + [sym_parameter] = STATE(3089), + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2489), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(3102), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3106), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(790)] = { - [sym_parameter] = STATE(3060), - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2504), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(790), - [sym_block_comment] = STATE(790), + [STATE(803)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2784), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(803), + [sym_block_comment] = STATE(803), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -95076,65 +96223,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(3052), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3054), + [sym_self] = ACTIONS(3110), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(791)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(791), - [sym_block_comment] = STATE(791), + [STATE(804)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(804), + [sym_block_comment] = STATE(804), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(805)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(3114), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -95153,65 +96378,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), + }, + [STATE(806)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [aux_sym_enum_variant_list_repeat1] = STATE(822), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3062), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(807)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(807), + [sym_block_comment] = STATE(807), + [aux_sym_enum_variant_list_repeat1] = STATE(822), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3062), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(808)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(808), + [sym_block_comment] = STATE(808), + [aux_sym_enum_variant_list_repeat1] = STATE(822), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3062), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(792)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(792), - [sym_block_comment] = STATE(792), + [STATE(809)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(809), + [sym_block_comment] = STATE(809), + [aux_sym_enum_variant_list_repeat1] = STATE(822), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3062), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(810)] = { + [sym_parameter] = STATE(3089), + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2819), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3068), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -95230,69 +96763,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(3102), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), + [sym_self] = ACTIONS(3106), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(793)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(965), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(793), - [sym_block_comment] = STATE(793), - [aux_sym_enum_variant_list_repeat1] = STATE(814), + [STATE(811)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), + [aux_sym_enum_variant_list_repeat1] = STATE(822), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3070), + [anon_sym_RPAREN] = ACTIONS(3124), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -95310,63 +96843,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), + [sym_crate] = ACTIONS(3062), [sym_metavariable] = ACTIONS(1621), }, - [STATE(794)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(794), - [sym_block_comment] = STATE(794), + [STATE(812)] = { + [sym_parameter] = STATE(3156), + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3003), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3072), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -95384,65 +96917,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), + [sym_self] = ACTIONS(3106), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(795)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(795), - [sym_block_comment] = STATE(795), + [STATE(813)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2990), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(813), + [sym_block_comment] = STATE(813), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3074), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -95461,66 +96993,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(796)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(796), - [sym_block_comment] = STATE(796), + [STATE(814)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2652), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(814), + [sym_block_comment] = STATE(814), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3076), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -95538,62 +97069,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), + [sym_self] = ACTIONS(3126), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(797)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2615), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(797), - [sym_block_comment] = STATE(797), + [STATE(815)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2471), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(815), + [sym_block_comment] = STATE(815), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -95614,141 +97145,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3078), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3080), + [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(798)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(965), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(798), - [sym_block_comment] = STATE(798), - [aux_sym_enum_variant_list_repeat1] = STATE(814), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), + [STATE(816)] = { + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2954), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1659), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, - [STATE(799)] = { - [sym_parameter] = STATE(3137), - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2949), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(799), - [sym_block_comment] = STATE(799), + [STATE(817)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2823), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -95769,66 +97297,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(3052), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3054), + [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(800)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(800), - [sym_block_comment] = STATE(800), + [STATE(818)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3130), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3084), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), [anon_sym_u16] = ACTIONS(1784), @@ -95846,65 +97373,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(801)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(801), - [sym_block_comment] = STATE(801), + [STATE(819)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3154), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3086), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -95923,65 +97449,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(802)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(802), - [sym_block_comment] = STATE(802), + [STATE(820)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2161), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3088), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -96000,65 +97525,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(803)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(803), - [sym_block_comment] = STATE(803), + [STATE(821)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2181), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3090), [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_u8] = ACTIONS(1784), [anon_sym_i8] = ACTIONS(1784), @@ -96077,69 +97601,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(804)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(965), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(804), - [sym_block_comment] = STATE(804), - [aux_sym_enum_variant_list_repeat1] = STATE(814), + [STATE(822)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(929), + [sym__type] = STATE(2864), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(822), + [sym_block_comment] = STATE(822), + [aux_sym_enum_variant_list_repeat1] = STATE(1074), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3092), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -96157,59 +97680,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), + [sym_crate] = ACTIONS(3062), [sym_metavariable] = ACTIONS(1621), }, - [STATE(805)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3357), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(805), - [sym_block_comment] = STATE(805), + [STATE(823)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2167), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(823), + [sym_block_comment] = STATE(823), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -96230,138 +97753,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(3130), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(806)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3378), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(806), - [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(824)] = { + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(3005), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(824), + [sym_block_comment] = STATE(824), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1659), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym__] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, - [STATE(807)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2571), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(807), - [sym_block_comment] = STATE(807), + [STATE(825)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(825), + [sym_block_comment] = STATE(825), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -96382,62 +97905,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3094), + [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(808)] = { - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(2936), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(808), - [sym_block_comment] = STATE(808), + [STATE(826)] = { + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(3022), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(826), + [sym_block_comment] = STATE(826), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -96486,34 +98009,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(809)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2133), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(809), - [sym_block_comment] = STATE(809), + [STATE(827)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2186), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -96534,62 +98057,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(810)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2513), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(810), - [sym_block_comment] = STATE(810), + [STATE(828)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2193), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(828), + [sym_block_comment] = STATE(828), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -96610,214 +98133,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(811)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(925), - [sym__type] = STATE(2690), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(811), - [sym_block_comment] = STATE(811), - [aux_sym_enum_variant_list_repeat1] = STATE(1059), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), - [sym_metavariable] = ACTIONS(1621), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(812)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2136), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(812), - [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(829)] = { + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(3006), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(829), + [sym_block_comment] = STATE(829), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1659), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym__] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, - [STATE(813)] = { - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(813), - [sym_block_comment] = STATE(813), + [STATE(830)] = { + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2829), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(830), + [sym_block_comment] = STATE(830), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -96866,40 +98313,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(814)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(899), - [sym__type] = STATE(3012), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(814), - [sym_block_comment] = STATE(814), - [aux_sym_enum_variant_list_repeat1] = STATE(1059), + [STATE(831)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(891), + [sym__type] = STATE(2776), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(831), + [sym_block_comment] = STATE(831), + [aux_sym_enum_variant_list_repeat1] = STATE(1074), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3062), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(832)] = { + [sym_attribute_item] = STATE(1433), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [aux_sym_enum_variant_list_repeat1] = STATE(822), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -96917,59 +98440,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(3060), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), + [sym_crate] = ACTIONS(3062), [sym_metavariable] = ACTIONS(1621), }, - [STATE(815)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2433), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(815), - [sym_block_comment] = STATE(815), + [STATE(833)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3176), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -96990,62 +98513,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(3098), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(816)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2151), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(816), - [sym_block_comment] = STATE(816), + [STATE(834)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2479), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97066,62 +98589,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(817)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2842), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(817), - [sym_block_comment] = STATE(817), + [STATE(835)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3377), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97142,214 +98665,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), - }, - [STATE(818)] = { - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3037), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(818), - [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(819)] = { - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3051), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(819), - [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), + [STATE(836)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2512), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(836), + [sym_block_comment] = STATE(836), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_gen] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1798), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(820)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2478), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(820), - [sym_block_comment] = STATE(820), + [STATE(837)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2500), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(837), + [sym_block_comment] = STATE(837), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97370,62 +98817,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(3100), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(821)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3379), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(821), - [sym_block_comment] = STATE(821), + [STATE(838)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3343), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97446,62 +98893,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(822)] = { - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(2884), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(822), - [sym_block_comment] = STATE(822), + [STATE(839)] = { + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2927), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -97535,7 +98982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_gen] = ACTIONS(1673), [anon_sym_union] = ACTIONS(1673), [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(3102), + [sym_mutable_specifier] = ACTIONS(1677), [sym_integer_literal] = ACTIONS(1679), [aux_sym_string_literal_token1] = ACTIONS(1681), [sym_char_literal] = ACTIONS(1679), @@ -97550,110 +98997,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(823)] = { - [sym_attribute_item] = STATE(1482), - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(965), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(823), - [sym_block_comment] = STATE(823), - [aux_sym_enum_variant_list_repeat1] = STATE(814), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3042), - [sym_metavariable] = ACTIONS(1621), - }, - [STATE(824)] = { - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(2911), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(824), - [sym_block_comment] = STATE(824), + [STATE(840)] = { + [sym_bracketed_type] = STATE(3648), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2968), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(3052), + [sym_const_block] = STATE(2968), + [sym__pattern] = STATE(2933), + [sym_generic_pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2968), + [sym_slice_pattern] = STATE(2968), + [sym_tuple_struct_pattern] = STATE(2968), + [sym_struct_pattern] = STATE(2968), + [sym_remaining_field_pattern] = STATE(2968), + [sym_mut_pattern] = STATE(2968), + [sym_range_pattern] = STATE(2968), + [sym_ref_pattern] = STATE(2968), + [sym_captured_pattern] = STATE(2968), + [sym_reference_pattern] = STATE(2968), + [sym_or_pattern] = STATE(2968), + [sym__literal_pattern] = STATE(2362), + [sym_negative_literal] = STATE(2453), + [sym_string_literal] = STATE(2453), + [sym_raw_string_literal] = STATE(2453), + [sym_boolean_literal] = STATE(2453), + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), [sym_identifier] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1649), @@ -97702,34 +99073,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(825)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2130), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(825), - [sym_block_comment] = STATE(825), + [STATE(841)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2757), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97750,62 +99121,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(826)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2126), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(826), - [sym_block_comment] = STATE(826), + [STATE(842)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3390), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97826,62 +99197,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(827)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3359), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(827), - [sym_block_comment] = STATE(827), + [STATE(843)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3406), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97902,62 +99273,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(828)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2440), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(828), - [sym_block_comment] = STATE(828), + [STATE(844)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3410), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -97978,62 +99349,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(829)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3113), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(829), - [sym_block_comment] = STATE(829), + [STATE(845)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3411), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -98054,62 +99425,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(830)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2588), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(830), - [sym_block_comment] = STATE(830), + [STATE(846)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3412), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -98130,62 +99501,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(831)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2170), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(831), - [sym_block_comment] = STATE(831), + [STATE(847)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(3413), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -98206,62 +99577,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(832)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(832), - [sym_block_comment] = STATE(832), + [STATE(848)] = { + [sym_bracketed_type] = STATE(3588), + [sym_generic_type] = STATE(3593), + [sym_generic_type_with_turbofish] = STATE(3369), + [sym_macro_invocation] = STATE(2192), + [sym_scoped_identifier] = STATE(2022), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(2192), + [sym__pattern] = STATE(2174), + [sym_generic_pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(2192), + [sym_slice_pattern] = STATE(2192), + [sym_tuple_struct_pattern] = STATE(2192), + [sym_struct_pattern] = STATE(2192), + [sym_remaining_field_pattern] = STATE(2192), + [sym_mut_pattern] = STATE(2192), + [sym_range_pattern] = STATE(2192), + [sym_ref_pattern] = STATE(2192), + [sym_captured_pattern] = STATE(2192), + [sym_reference_pattern] = STATE(2192), + [sym_or_pattern] = STATE(2192), + [sym__literal_pattern] = STATE(2084), + [sym_negative_literal] = STATE(2088), + [sym_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), [sym_identifier] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1778), [anon_sym_LBRACK] = ACTIONS(1782), @@ -98282,675 +99653,939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1784), [anon_sym_str] = ACTIONS(1784), [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1241), [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), [anon_sym_COLON_COLON] = ACTIONS(1790), [anon_sym_const] = ACTIONS(1792), [anon_sym_default] = ACTIONS(1794), [anon_sym_gen] = ACTIONS(1794), [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1281), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1796), [sym_super] = ACTIONS(1796), [sym_crate] = ACTIONS(1796), [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1287), }, - [STATE(833)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3229), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(833), - [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(849)] = { + [sym_function_modifiers] = STATE(3571), + [sym_higher_ranked_trait_bound] = STATE(2251), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2263), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2290), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_use_bounds] = STATE(2036), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(834)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3054), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(834), - [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(850)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3294), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(3142), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(835)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3039), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(835), - [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(851)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1775), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [sym_mutable_specifier] = ACTIONS(3174), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(852)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2045), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2033), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_use_bounds] = STATE(2036), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(853)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(3180), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(854)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1408), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [sym_mutable_specifier] = ACTIONS(3212), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), }, - [STATE(836)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3218), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(836), - [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(855)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(3218), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(3220), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(837)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3372), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(837), - [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(856)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2045), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2033), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_use_bounds] = STATE(2036), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(838)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3376), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(838), - [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(857)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1468), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [sym_mutable_specifier] = ACTIONS(3222), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(858)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(3224), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(839)] = { - [sym_bracketed_type] = STATE(3477), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3102), - [sym_macro_invocation] = STATE(2165), - [sym_scoped_identifier] = STATE(1979), - [sym_scoped_type_identifier] = STATE(2853), - [sym_const_block] = STATE(2165), - [sym__pattern] = STATE(3377), - [sym_generic_pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(2165), - [sym_slice_pattern] = STATE(2165), - [sym_tuple_struct_pattern] = STATE(2165), - [sym_struct_pattern] = STATE(2165), - [sym_remaining_field_pattern] = STATE(2165), - [sym_mut_pattern] = STATE(2165), - [sym_range_pattern] = STATE(2165), - [sym_ref_pattern] = STATE(2165), - [sym_captured_pattern] = STATE(2165), - [sym_reference_pattern] = STATE(2165), - [sym_or_pattern] = STATE(2165), - [sym__literal_pattern] = STATE(2056), - [sym_negative_literal] = STATE(2064), - [sym_string_literal] = STATE(2064), - [sym_raw_string_literal] = STATE(2064), - [sym_boolean_literal] = STATE(2064), - [sym_line_comment] = STATE(839), - [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1269), + [STATE(859)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2766), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(840)] = { - [sym_bracketed_type] = STATE(3606), - [sym_generic_type] = STATE(3635), - [sym_generic_type_with_turbofish] = STATE(3336), - [sym_macro_invocation] = STATE(2793), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(3025), - [sym_const_block] = STATE(2793), - [sym__pattern] = STATE(3073), - [sym_generic_pattern] = STATE(2793), - [sym_tuple_pattern] = STATE(2793), - [sym_slice_pattern] = STATE(2793), - [sym_tuple_struct_pattern] = STATE(2793), - [sym_struct_pattern] = STATE(2793), - [sym_remaining_field_pattern] = STATE(2793), - [sym_mut_pattern] = STATE(2793), - [sym_range_pattern] = STATE(2793), - [sym_ref_pattern] = STATE(2793), - [sym_captured_pattern] = STATE(2793), - [sym_reference_pattern] = STATE(2793), - [sym_or_pattern] = STATE(2793), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2341), - [sym_string_literal] = STATE(2341), - [sym_raw_string_literal] = STATE(2341), - [sym_boolean_literal] = STATE(2341), - [sym_line_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), + [STATE(860)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(841)] = { - [sym_function_modifiers] = STATE(3444), - [sym_higher_ranked_trait_bound] = STATE(2261), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2236), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2274), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_use_bounds] = STATE(2006), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(841), - [sym_block_comment] = STATE(841), + [STATE(861)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3230), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98968,23 +100603,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_use] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98992,38 +100626,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(842)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2018), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_use_bounds] = STATE(2006), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(842), - [sym_block_comment] = STATE(842), + [STATE(862)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2600), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3232), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99041,23 +100675,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_use] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99065,111 +100698,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(843)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [sym_mutable_specifier] = ACTIONS(3138), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(844)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(844), - [sym_block_comment] = STATE(844), + [STATE(863)] = { + [sym_function_modifiers] = STATE(3571), + [sym_higher_ranked_trait_bound] = STATE(2251), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2268), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2247), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99187,135 +100747,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(3136), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3148), + [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(845)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1479), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(845), - [sym_block_comment] = STATE(845), + [STATE(864)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_type_parameters] = STATE(968), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2424), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2396), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2228), + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(846)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3121), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(846), - [sym_block_comment] = STATE(846), + [STATE(865)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_type_parameters] = STATE(951), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2443), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2238), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3240), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99333,23 +100891,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(3242), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3238), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99357,38 +100914,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(847)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(847), - [sym_block_comment] = STATE(847), + [STATE(866)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99406,23 +100963,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99430,38 +100986,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(848)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2018), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_use_bounds] = STATE(2006), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(848), - [sym_block_comment] = STATE(848), + [STATE(867)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_type_parameters] = STATE(890), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2376), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2391), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2207), + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3246), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99479,23 +101035,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(3248), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3238), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3022), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_use] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99503,38 +101058,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(849)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_type_parameters] = STATE(980), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2210), - [sym_line_comment] = STATE(849), - [sym_block_comment] = STATE(849), + [STATE(868)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2618), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3250), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99552,22 +101107,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99575,38 +101130,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(850)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_type_parameters] = STATE(971), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2406), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2420), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2205), - [sym_line_comment] = STATE(850), - [sym_block_comment] = STATE(850), + [STATE(869)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_type_parameters] = STATE(967), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2455), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2446), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2240), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3252), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99624,22 +101179,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3254), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3238), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99647,38 +101202,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(851)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), + [STATE(870)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2585), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99696,22 +101250,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99719,109 +101274,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(852)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1416), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(845), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3202), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(853)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(847), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), + [STATE(871)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3258), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99839,23 +101323,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(3204), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99863,38 +101346,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(854)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), + [STATE(872)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2704), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3260), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99912,22 +101395,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99935,38 +101418,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(855)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(855), - [sym_block_comment] = STATE(855), + [STATE(873)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3189), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(850), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3208), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99984,22 +101466,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(3262), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100007,37 +101490,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(856)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2772), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(856), - [sym_block_comment] = STATE(856), + [STATE(874)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3264), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100055,23 +101539,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3210), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100079,110 +101562,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(857)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(843), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(857), - [sym_block_comment] = STATE(857), + [STATE(875)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2967), + [sym_bracketed_type] = STATE(3448), + [sym_qualified_type] = STATE(3728), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [sym_mutable_specifier] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(858)] = { - [sym_function_modifiers] = STATE(3444), - [sym_higher_ranked_trait_bound] = STATE(2261), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2244), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2269), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(858), - [sym_block_comment] = STATE(858), + [STATE(876)] = { + [sym_function_modifiers] = STATE(3571), + [sym_higher_ranked_trait_bound] = STATE(2251), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2263), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2247), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100200,22 +101683,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(3136), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100223,38 +101706,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(859)] = { - [sym_function_modifiers] = STATE(3444), - [sym_higher_ranked_trait_bound] = STATE(2261), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2236), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2269), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(859), - [sym_block_comment] = STATE(859), + [STATE(877)] = { + [sym_function_modifiers] = STATE(3571), + [sym_higher_ranked_trait_bound] = STATE(2227), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2230), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(2231), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100272,22 +101755,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(3136), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100295,38 +101778,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(860)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_type_parameters] = STATE(951), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2338), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2339), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2206), - [sym_line_comment] = STATE(860), - [sym_block_comment] = STATE(860), + [STATE(878)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100344,22 +101827,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100367,38 +101850,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(861)] = { - [sym_function_modifiers] = STATE(3444), - [sym_higher_ranked_trait_bound] = STATE(2179), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2187), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(2196), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(861), - [sym_block_comment] = STATE(861), + [STATE(879)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1754), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(851), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [sym_mutable_specifier] = ACTIONS(3268), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(880)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2585), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100416,22 +101970,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100439,38 +101993,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(862)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2544), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(862), - [sym_block_comment] = STATE(862), + [STATE(881)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3218), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100488,22 +102041,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100511,37 +102064,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(863)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3147), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(846), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(863), - [sym_block_comment] = STATE(863), + [STATE(882)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3336), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100559,23 +102112,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [sym_mutable_specifier] = ACTIONS(3220), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100583,38 +102135,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(864)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3034), - [sym_bracketed_type] = STATE(3410), - [sym_qualified_type] = STATE(3470), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(864), - [sym_block_comment] = STATE(864), + [STATE(883)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2973), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100632,22 +102183,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100655,38 +102206,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(865)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), + [STATE(884)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2042), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3222), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100704,22 +102254,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100727,38 +102277,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(866)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), + [STATE(885)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2766), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3224), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100776,22 +102325,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100799,37 +102348,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(867)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2740), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), + [STATE(886)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2597), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100847,23 +102396,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3226), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100871,38 +102419,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(868)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2618), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), + [STATE(887)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3228), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100920,22 +102467,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100943,38 +102490,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(869)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), + [STATE(888)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2580), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3230), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100992,22 +102538,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101015,38 +102561,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(870)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), + [STATE(889)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3232), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101064,22 +102609,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101087,38 +102632,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(871)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_type_parameters] = STATE(947), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2421), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2424), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2193), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), + [STATE(890)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2400), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2401), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2211), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3270), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101136,22 +102680,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3272), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101159,37 +102703,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(872)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2010), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(872), - [sym_block_comment] = STATE(872), + [STATE(891)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2564), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101207,22 +102751,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101230,37 +102774,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(873)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), + [STATE(892)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2399), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101278,22 +102822,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101301,37 +102845,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(874)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2738), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), + [STATE(893)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101349,22 +102893,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101372,37 +102916,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(875)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2972), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), + [STATE(894)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101420,22 +102964,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101443,37 +102987,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(876)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2572), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(876), - [sym_block_comment] = STATE(876), + [STATE(895)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2830), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101491,22 +103035,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101514,37 +103058,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(877)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2772), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(877), - [sym_block_comment] = STATE(877), + [STATE(896)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2533), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101562,22 +103106,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101585,37 +103129,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(878)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2024), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(878), - [sym_block_comment] = STATE(878), + [STATE(897)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101633,22 +103177,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101656,37 +103200,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(879)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2881), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(879), - [sym_block_comment] = STATE(879), + [STATE(898)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2062), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101704,22 +103248,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101727,37 +103271,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(880)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2032), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), + [STATE(899)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101775,22 +103319,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101798,37 +103342,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(881)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2039), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), + [STATE(900)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2403), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101846,22 +103390,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101869,37 +103413,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(882)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), + [STATE(901)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2064), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101917,22 +103461,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101940,250 +103484,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(883)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(883), - [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(884)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1479), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(885)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1483), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(886)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2709), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), + [STATE(902)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2454), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102201,22 +103532,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102224,108 +103555,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(887)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1408), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(887), - [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(888)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2025), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(888), - [sym_block_comment] = STATE(888), + [STATE(903)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2369), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102343,22 +103603,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102366,321 +103626,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(889)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1440), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(890)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1381), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(891)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1404), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(892)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1426), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(893)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), + [STATE(904)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3041), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102698,22 +103674,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102721,321 +103697,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(894)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1490), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(895)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1392), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(896)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1395), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(897)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), + [STATE(905)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1889), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), }, - [STATE(898)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), + [STATE(906)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2864), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103053,22 +103816,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103076,37 +103839,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(899)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2822), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), + [STATE(907)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2704), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103124,22 +103887,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103147,37 +103910,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(900)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2017), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), + [STATE(908)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2372), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103195,22 +103958,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103218,37 +103981,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(901)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2023), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), + [STATE(909)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1496), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(910)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2880), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103266,22 +104100,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103289,37 +104123,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(902)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2008), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), + [STATE(911)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1498), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(912)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1499), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(913)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2379), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103337,22 +104313,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103360,37 +104336,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(903)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3104), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), + [STATE(914)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2048), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103408,22 +104384,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103431,37 +104407,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(904)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), + [STATE(915)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1527), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(916)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1442), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(917)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2367), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103479,22 +104597,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103502,250 +104620,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(905)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1730), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(906)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(906), - [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(907)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1785), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(907), - [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(908)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2238), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), + [STATE(918)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2368), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103763,22 +104668,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103786,37 +104691,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(909)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), + [STATE(919)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1774), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(920)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1775), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(921)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2271), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103834,22 +104881,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103857,392 +104904,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(910)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1738), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(910), - [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(911)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1871), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(911), - [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(912)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(912), - [sym_block_comment] = STATE(912), + [STATE(922)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), }, - [STATE(913)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1664), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(913), - [sym_block_comment] = STATE(913), + [STATE(923)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1860), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), }, - [STATE(914)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1666), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), + [STATE(924)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(915)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2619), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), + [STATE(925)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104260,22 +105165,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104283,37 +105188,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(916)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2946), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(916), - [sym_block_comment] = STATE(916), + [STATE(926)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2437), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104331,22 +105236,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104354,321 +105259,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(917)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1672), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(917), - [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(918)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1674), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(918), - [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(919)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1676), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(920)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1681), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(921)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2379), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), + [STATE(927)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3101), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104686,22 +105307,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104709,37 +105330,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(922)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(922), - [sym_block_comment] = STATE(922), + [STATE(928)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2359), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104757,22 +105378,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104780,37 +105401,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(923)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(923), - [sym_block_comment] = STATE(923), + [STATE(929)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3035), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104828,22 +105449,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104851,37 +105472,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(924)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2388), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), + [STATE(930)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2408), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104899,22 +105520,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104922,37 +105543,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(925)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2679), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), + [STATE(931)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2800), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104970,22 +105591,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104993,37 +105614,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(926)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2996), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), + [STATE(932)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2572), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105041,22 +105662,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105064,108 +105685,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(927)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1462), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(928)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2250), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), + [STATE(933)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105183,22 +105733,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105206,179 +105756,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(929)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2392), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), + [STATE(934)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), }, - [STATE(930)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), + [STATE(935)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1717), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), }, - [STATE(931)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2456), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), + [STATE(936)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2858), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105396,22 +105946,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105419,37 +105969,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(932)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(932), - [sym_block_comment] = STATE(932), + [STATE(937)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2525), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105467,22 +106017,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105490,37 +106040,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(933)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2395), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(933), - [sym_block_comment] = STATE(933), + [STATE(938)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2776), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105538,22 +106088,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105561,37 +106111,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(934)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2015), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), + [STATE(939)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2283), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105609,22 +106159,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105632,37 +106182,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(935)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2397), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), + [STATE(940)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1782), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(941)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1722), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(942)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1724), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(943)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2276), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105680,22 +106443,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105703,37 +106466,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(936)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3028), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), + [STATE(944)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1429), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(945)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3293), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105751,22 +106585,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105774,37 +106608,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(937)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2517), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(937), - [sym_block_comment] = STATE(937), + [STATE(946)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3294), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105822,22 +106656,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105845,37 +106679,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(938)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2224), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(938), - [sym_block_comment] = STATE(938), + [STATE(947)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1443), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(948)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1730), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(949)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1732), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), + }, + [STATE(950)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3320), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105893,22 +106940,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105916,37 +106963,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(939)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2356), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(939), - [sym_block_comment] = STATE(939), + [STATE(951)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2404), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2445), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2239), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3274), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105964,22 +107011,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(3276), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105987,37 +107034,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(940)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2357), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), + [STATE(952)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2618), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106035,22 +107082,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106058,250 +107105,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(941)] = { - [sym_function_modifiers] = STATE(3415), - [sym_removed_trait_bound] = STATE(1498), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1413), - [sym_bracketed_type] = STATE(3596), - [sym_lifetime] = STATE(3542), - [sym_array_type] = STATE(1498), - [sym_for_lifetimes] = STATE(1583), - [sym_function_type] = STATE(1498), - [sym_tuple_type] = STATE(1498), - [sym_unit_type] = STATE(1498), - [sym_generic_type] = STATE(1297), - [sym_generic_type_with_turbofish] = STATE(3587), - [sym_bounded_type] = STATE(1498), - [sym_reference_type] = STATE(1498), - [sym_pointer_type] = STATE(1498), - [sym_never_type] = STATE(1498), - [sym_abstract_type] = STATE(1498), - [sym_dynamic_type] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1043), - [sym_line_comment] = STATE(941), - [sym_block_comment] = STATE(941), + [STATE(953)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1501), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), }, - [STATE(942)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(942), - [sym_block_comment] = STATE(942), + [STATE(954)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1733), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), }, - [STATE(943)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2245), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(943), - [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - }, - [STATE(944)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(944), - [sym_block_comment] = STATE(944), + [STATE(955)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2488), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106319,22 +107295,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106342,108 +107318,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(945)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), + [STATE(956)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1446), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), }, - [STATE(946)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2720), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), + [STATE(957)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2566), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106461,22 +107437,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106484,37 +107460,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(947)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2416), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2209), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), + [STATE(958)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2855), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3238), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106532,22 +107508,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106555,37 +107531,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(948)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3119), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(948), - [sym_block_comment] = STATE(948), + [STATE(959)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2945), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106603,22 +107579,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106626,37 +107602,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(949)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3121), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(949), - [sym_block_comment] = STATE(949), + [STATE(960)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2438), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106674,22 +107650,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106697,37 +107673,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(950)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2544), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), + [STATE(961)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2439), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106745,22 +107721,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106768,37 +107744,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(951)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2389), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2390), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2211), - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), + [STATE(962)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2640), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106816,22 +107792,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106839,37 +107815,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(952)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2366), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), + [STATE(963)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106887,22 +107863,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106910,37 +107886,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(953)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3210), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(953), - [sym_block_comment] = STATE(953), + [STATE(964)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2865), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106958,22 +107934,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106981,37 +107957,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(954)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3368), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(954), - [sym_block_comment] = STATE(954), + [STATE(965)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2532), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107029,22 +108005,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107052,37 +108028,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(955)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2745), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(955), - [sym_block_comment] = STATE(955), + [STATE(966)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2643), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107100,22 +108076,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107123,37 +108099,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(956)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2367), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), + [STATE(967)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2440), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2449), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2242), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3278), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107171,22 +108147,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(3280), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107194,37 +108170,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(957)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), + [STATE(968)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2363), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2407), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(2243), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107242,22 +108218,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(3284), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107265,37 +108241,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(958)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2010), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), + [STATE(969)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2745), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107313,131 +108289,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), + [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(959)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2634), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), + [STATE(970)] = { + [sym_function_modifiers] = STATE(3594), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1738), + [sym_bracketed_type] = STATE(3654), + [sym_lifetime] = STATE(3424), + [sym_array_type] = STATE(1851), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(1851), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(3645), + [sym_bounded_type] = STATE(1851), + [sym_reference_type] = STATE(1851), + [sym_pointer_type] = STATE(1851), + [sym_never_type] = STATE(1851), + [sym_abstract_type] = STATE(1851), + [sym_dynamic_type] = STATE(1851), + [sym_macro_invocation] = STATE(1851), + [sym_scoped_identifier] = STATE(3370), + [sym_scoped_type_identifier] = STATE(1579), + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), - [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_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3178), }, - [STATE(960)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2005), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), + [STATE(971)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2600), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107455,22 +108431,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107478,108 +108454,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(961)] = { - [sym_function_modifiers] = STATE(3557), - [sym_removed_trait_bound] = STATE(1876), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(1784), - [sym_bracketed_type] = STATE(3612), - [sym_lifetime] = STATE(3404), - [sym_array_type] = STATE(1876), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(1876), - [sym_tuple_type] = STATE(1876), - [sym_unit_type] = STATE(1876), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(3603), - [sym_bounded_type] = STATE(1876), - [sym_reference_type] = STATE(1876), - [sym_pointer_type] = STATE(1876), - [sym_never_type] = STATE(1876), - [sym_abstract_type] = STATE(1876), - [sym_dynamic_type] = STATE(1876), - [sym_macro_invocation] = STATE(1876), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1555), - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(3120), - [anon_sym_i8] = ACTIONS(3120), - [anon_sym_u16] = ACTIONS(3120), - [anon_sym_i16] = ACTIONS(3120), - [anon_sym_u32] = ACTIONS(3120), - [anon_sym_i32] = ACTIONS(3120), - [anon_sym_u64] = ACTIONS(3120), - [anon_sym_i64] = ACTIONS(3120), - [anon_sym_u128] = ACTIONS(3120), - [anon_sym_i128] = ACTIONS(3120), - [anon_sym_isize] = ACTIONS(3120), - [anon_sym_usize] = ACTIONS(3120), - [anon_sym_f32] = ACTIONS(3120), - [anon_sym_f64] = ACTIONS(3120), - [anon_sym_bool] = ACTIONS(3120), - [anon_sym_str] = ACTIONS(3120), - [anon_sym_char] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_fn] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_gen] = ACTIONS(3132), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(3136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_crate] = ACTIONS(3140), - [sym_metavariable] = ACTIONS(3142), - }, - [STATE(962)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2618), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), + [STATE(972)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2882), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107597,22 +108502,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107620,37 +108525,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(963)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2863), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), + [STATE(973)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2257), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107668,22 +108573,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107691,37 +108596,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(964)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2508), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), + [STATE(974)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2364), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107739,22 +108644,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107762,37 +108667,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(965)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3012), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), + [STATE(975)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2365), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107810,22 +108715,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107833,37 +108738,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(966)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2823), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), + [STATE(976)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2392), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107881,22 +108786,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107904,37 +108809,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(967)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2690), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), + [STATE(977)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107952,22 +108857,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107975,37 +108880,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(968)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2353), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), + [STATE(978)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108023,22 +108928,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108046,37 +108951,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(969)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2346), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(969), - [sym_block_comment] = STATE(969), + [STATE(979)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2678), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108094,22 +108999,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108117,37 +109022,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(970)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(3055), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(970), - [sym_block_comment] = STATE(970), + [STATE(980)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2908), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108165,22 +109070,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108188,37 +109093,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(971)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2422), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2208), - [sym_line_comment] = STATE(971), - [sym_block_comment] = STATE(971), + [STATE(981)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2514), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108236,22 +109141,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108259,37 +109164,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(972)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2446), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(972), - [sym_block_comment] = STATE(972), + [STATE(982)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2654), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108307,22 +109212,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108330,37 +109235,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(973)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2812), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(973), - [sym_block_comment] = STATE(973), + [STATE(983)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2655), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108378,22 +109283,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108401,37 +109306,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(974)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2349), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), + [STATE(984)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2914), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108449,22 +109354,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108472,37 +109377,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(975)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(975), - [sym_block_comment] = STATE(975), + [STATE(985)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2657), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108520,22 +109425,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108543,37 +109448,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(976)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2718), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(976), - [sym_block_comment] = STATE(976), + [STATE(986)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3082), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108591,22 +109496,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108614,37 +109519,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(977)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2824), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(977), - [sym_block_comment] = STATE(977), + [STATE(987)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2272), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108662,22 +109567,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108685,37 +109590,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(978)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2459), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), + [STATE(988)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108733,22 +109638,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108756,37 +109661,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(979)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2732), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(979), - [sym_block_comment] = STATE(979), + [STATE(989)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108804,22 +109709,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108827,37 +109732,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(980)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2351), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(2426), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(2212), - [sym_line_comment] = STATE(980), - [sym_block_comment] = STATE(980), + [STATE(990)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2447), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108875,22 +109780,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108898,37 +109803,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(981)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2256), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(981), - [sym_block_comment] = STATE(981), + [STATE(991)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2937), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108946,22 +109851,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108969,37 +109874,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(982)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2271), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), + [STATE(992)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2668), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109017,22 +109922,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109040,37 +109945,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(983)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2359), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), + [STATE(993)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2425), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109088,22 +109993,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109111,37 +110016,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(984)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2360), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(984), - [sym_block_comment] = STATE(984), + [STATE(994)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2426), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109159,22 +110064,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109182,37 +110087,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(985)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2361), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), + [STATE(995)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109230,22 +110135,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109253,37 +110158,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(986)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2362), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), + [STATE(996)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2428), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109301,22 +110206,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109324,37 +110229,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(987)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2552), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), + [STATE(997)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2277), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109372,22 +110277,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109395,37 +110300,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(988)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2867), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), + [STATE(998)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2671), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109443,22 +110348,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109466,37 +110371,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(989)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2469), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(989), - [sym_block_comment] = STATE(989), + [STATE(999)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2672), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109514,22 +110419,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109537,37 +110442,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(990)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2555), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), + [STATE(1000)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2289), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109585,22 +110490,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109608,37 +110513,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(991)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2875), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), + [STATE(1001)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2416), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109656,22 +110561,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109679,37 +110584,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(992)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2559), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(992), - [sym_block_comment] = STATE(992), + [STATE(1002)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2450), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109727,22 +110632,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109750,37 +110655,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(993)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2222), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(993), - [sym_block_comment] = STATE(993), + [STATE(1003)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2451), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109798,22 +110703,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109821,37 +110726,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(994)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2368), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(994), - [sym_block_comment] = STATE(994), + [STATE(1004)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2244), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109869,22 +110774,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109892,37 +110797,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(995)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(995), - [sym_block_comment] = STATE(995), + [STATE(1005)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2029), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109940,22 +110845,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109963,37 +110868,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(996)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2900), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(996), - [sym_block_comment] = STATE(996), + [STATE(1006)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2960), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110011,22 +110916,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110034,37 +110939,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(997)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2370), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(997), - [sym_block_comment] = STATE(997), + [STATE(1007)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110082,22 +110987,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110105,37 +111010,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(998)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2371), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), + [STATE(1008)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2288), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110153,22 +111058,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110176,37 +111081,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(999)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), + [STATE(1009)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110224,22 +111129,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110247,37 +111152,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1000)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2373), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), + [STATE(1010)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2291), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110295,22 +111200,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110318,37 +111223,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1001)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2237), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), + [STATE(1011)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110366,22 +111271,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110389,37 +111294,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1002)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1002), - [sym_block_comment] = STATE(1002), + [STATE(1012)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3013), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110437,22 +111342,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110460,37 +111365,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1003)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2864), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1003), - [sym_block_comment] = STATE(1003), + [STATE(1013)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2981), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110508,22 +111413,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110531,37 +111436,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1004)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2374), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), + [STATE(1014)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2816), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110579,22 +111484,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110602,37 +111507,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1005)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), + [STATE(1015)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2641), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110650,22 +111555,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110673,37 +111578,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1006)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2223), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1006), - [sym_block_comment] = STATE(1006), + [STATE(1016)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2756), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110721,22 +111626,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110744,37 +111649,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1007)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2923), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), + [STATE(1017)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1416), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(1018)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2563), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110792,22 +111768,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110815,37 +111791,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1008)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2231), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1008), - [sym_block_comment] = STATE(1008), + [STATE(1019)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110863,22 +111839,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3286), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(1020)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1410), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(1021)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(1022)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1408), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(1023)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3417), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [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_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110886,37 +112146,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1009)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2740), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1009), - [sym_block_comment] = STATE(1009), + [STATE(1024)] = { + [sym_function_modifiers] = STATE(3454), + [sym_removed_trait_bound] = STATE(1439), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(1448), + [sym_bracketed_type] = STATE(3638), + [sym_lifetime] = STATE(3561), + [sym_array_type] = STATE(1439), + [sym_for_lifetimes] = STATE(1621), + [sym_function_type] = STATE(1439), + [sym_tuple_type] = STATE(1439), + [sym_unit_type] = STATE(1439), + [sym_generic_type] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(3627), + [sym_bounded_type] = STATE(1439), + [sym_reference_type] = STATE(1439), + [sym_pointer_type] = STATE(1439), + [sym_never_type] = STATE(1439), + [sym_abstract_type] = STATE(1439), + [sym_dynamic_type] = STATE(1439), + [sym_macro_invocation] = STATE(1439), + [sym_scoped_identifier] = STATE(3303), + [sym_scoped_type_identifier] = STATE(1058), + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3192), + [anon_sym_u8] = ACTIONS(3194), + [anon_sym_i8] = ACTIONS(3194), + [anon_sym_u16] = ACTIONS(3194), + [anon_sym_i16] = ACTIONS(3194), + [anon_sym_u32] = ACTIONS(3194), + [anon_sym_i32] = ACTIONS(3194), + [anon_sym_u64] = ACTIONS(3194), + [anon_sym_i64] = ACTIONS(3194), + [anon_sym_u128] = ACTIONS(3194), + [anon_sym_i128] = ACTIONS(3194), + [anon_sym_isize] = ACTIONS(3194), + [anon_sym_usize] = ACTIONS(3194), + [anon_sym_f32] = ACTIONS(3194), + [anon_sym_f64] = ACTIONS(3194), + [anon_sym_bool] = ACTIONS(3194), + [anon_sym_str] = ACTIONS(3194), + [anon_sym_char] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(3206), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_crate] = ACTIONS(3214), + [sym_metavariable] = ACTIONS(3216), + }, + [STATE(1025)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3030), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1025), + [sym_block_comment] = STATE(1025), + [aux_sym_function_modifiers_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110934,22 +112265,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110957,37 +112288,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1010)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2240), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1010), - [sym_block_comment] = STATE(1010), + [STATE(1026)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2034), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1026), + [sym_block_comment] = STATE(1026), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -111005,22 +112336,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -111028,37 +112359,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1011)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2944), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), + [STATE(1027)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(2045), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1027), + [sym_block_comment] = STATE(1027), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -111076,22 +112407,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -111099,37 +112430,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1012)] = { - [sym_function_modifiers] = STATE(3444), - [sym_removed_trait_bound] = STATE(2014), - [sym_extern_modifier] = STATE(2393), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3410), - [sym_lifetime] = STATE(3479), - [sym_array_type] = STATE(2014), - [sym_for_lifetimes] = STATE(1576), - [sym_function_type] = STATE(2014), - [sym_tuple_type] = STATE(2014), - [sym_unit_type] = STATE(2014), - [sym_generic_type] = STATE(1980), - [sym_generic_type_with_turbofish] = STATE(3503), - [sym_bounded_type] = STATE(2014), - [sym_reference_type] = STATE(2014), - [sym_pointer_type] = STATE(2014), - [sym_never_type] = STATE(2014), - [sym_abstract_type] = STATE(2014), - [sym_dynamic_type] = STATE(2014), - [sym_macro_invocation] = STATE(2014), - [sym_scoped_identifier] = STATE(3309), - [sym_scoped_type_identifier] = STATE(1957), - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), + [STATE(1028)] = { + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2051), + [sym_extern_modifier] = STATE(2398), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3448), + [sym_lifetime] = STATE(3546), + [sym_array_type] = STATE(2051), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(2051), + [sym_tuple_type] = STATE(2051), + [sym_unit_type] = STATE(2051), + [sym_generic_type] = STATE(2020), + [sym_generic_type_with_turbofish] = STATE(3695), + [sym_bounded_type] = STATE(2051), + [sym_reference_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_never_type] = STATE(2051), + [sym_abstract_type] = STATE(2051), + [sym_dynamic_type] = STATE(2051), + [sym_macro_invocation] = STATE(2051), + [sym_scoped_identifier] = STATE(3296), + [sym_scoped_type_identifier] = STATE(1981), + [sym_line_comment] = STATE(1028), + [sym_block_comment] = STATE(1028), [aux_sym_function_modifiers_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -111147,22 +112478,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1273), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_dyn] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_dyn] = ACTIONS(1283), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -111170,34 +112501,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1013)] = { - [sym_attribute_item] = STATE(1015), - [sym_line_comment] = STATE(1013), - [sym_block_comment] = STATE(1013), - [aux_sym_enum_variant_list_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(3256), + [STATE(1029)] = { + [sym_attribute_item] = STATE(1031), + [sym_line_comment] = STATE(1029), + [sym_block_comment] = STATE(1029), + [aux_sym_enum_variant_list_repeat1] = STATE(1029), + [sym_identifier] = ACTIONS(3288), [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(3256), - [anon_sym_i8] = ACTIONS(3256), - [anon_sym_u16] = ACTIONS(3256), - [anon_sym_i16] = ACTIONS(3256), - [anon_sym_u32] = ACTIONS(3256), - [anon_sym_i32] = ACTIONS(3256), - [anon_sym_u64] = ACTIONS(3256), - [anon_sym_i64] = ACTIONS(3256), - [anon_sym_u128] = ACTIONS(3256), - [anon_sym_i128] = ACTIONS(3256), - [anon_sym_isize] = ACTIONS(3256), - [anon_sym_usize] = ACTIONS(3256), - [anon_sym_f32] = ACTIONS(3256), - [anon_sym_f64] = ACTIONS(3256), - [anon_sym_bool] = ACTIONS(3256), - [anon_sym_str] = ACTIONS(3256), - [anon_sym_char] = ACTIONS(3256), + [anon_sym_u8] = ACTIONS(3288), + [anon_sym_i8] = ACTIONS(3288), + [anon_sym_u16] = ACTIONS(3288), + [anon_sym_i16] = ACTIONS(3288), + [anon_sym_u32] = ACTIONS(3288), + [anon_sym_i32] = ACTIONS(3288), + [anon_sym_u64] = ACTIONS(3288), + [anon_sym_i64] = ACTIONS(3288), + [anon_sym_u128] = ACTIONS(3288), + [anon_sym_i128] = ACTIONS(3288), + [anon_sym_isize] = ACTIONS(3288), + [anon_sym_usize] = ACTIONS(3288), + [anon_sym_f32] = ACTIONS(3288), + [anon_sym_f64] = ACTIONS(3288), + [anon_sym_bool] = ACTIONS(3288), + [anon_sym_str] = ACTIONS(3288), + [anon_sym_char] = ACTIONS(3288), [anon_sym_DASH] = ACTIONS(759), [anon_sym_BANG] = ACTIONS(759), [anon_sym_AMP] = ACTIONS(759), @@ -111207,308 +112538,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(759), [anon_sym_COLON_COLON] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_default] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_gen] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_loop] = ACTIONS(3256), - [anon_sym_match] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_union] = ACTIONS(3256), - [anon_sym_unsafe] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_move] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_gen] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_loop] = ACTIONS(3288), + [anon_sym_match] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_union] = ACTIONS(3288), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_move] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), [sym_integer_literal] = ACTIONS(759), [aux_sym_string_literal_token1] = ACTIONS(759), [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(3256), - [anon_sym_false] = ACTIONS(3256), + [anon_sym_true] = ACTIONS(3288), + [anon_sym_false] = ACTIONS(3288), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_crate] = ACTIONS(3256), + [sym_self] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_crate] = ACTIONS(3288), [sym_metavariable] = ACTIONS(759), [sym__raw_string_literal_start] = ACTIONS(759), [sym_float_literal] = ACTIONS(759), }, - [STATE(1014)] = { - [sym_line_comment] = STATE(1014), - [sym_block_comment] = STATE(1014), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3000), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(3000), - [anon_sym_u8] = ACTIONS(3002), - [anon_sym_i8] = ACTIONS(3002), - [anon_sym_u16] = ACTIONS(3002), - [anon_sym_i16] = ACTIONS(3002), - [anon_sym_u32] = ACTIONS(3002), - [anon_sym_i32] = ACTIONS(3002), - [anon_sym_u64] = ACTIONS(3002), - [anon_sym_i64] = ACTIONS(3002), - [anon_sym_u128] = ACTIONS(3002), - [anon_sym_i128] = ACTIONS(3002), - [anon_sym_isize] = ACTIONS(3002), - [anon_sym_usize] = ACTIONS(3002), - [anon_sym_f32] = ACTIONS(3002), - [anon_sym_f64] = ACTIONS(3002), - [anon_sym_bool] = ACTIONS(3002), - [anon_sym_str] = ACTIONS(3002), - [anon_sym_char] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3000), - [anon_sym_BANG] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(3000), - [anon_sym_PIPE] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_POUND] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3002), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_const] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_default] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_gen] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_loop] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_union] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_move] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [sym_integer_literal] = ACTIONS(3000), - [aux_sym_string_literal_token1] = ACTIONS(3000), - [sym_char_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(3002), - [anon_sym_false] = ACTIONS(3002), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3002), - [sym_super] = ACTIONS(3002), - [sym_crate] = ACTIONS(3002), - [sym_metavariable] = ACTIONS(3000), - [sym__raw_string_literal_start] = ACTIONS(3000), - [sym_float_literal] = ACTIONS(3000), - }, - [STATE(1015)] = { - [sym_line_comment] = STATE(1015), - [sym_block_comment] = STATE(1015), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_RBRACK] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_u8] = ACTIONS(3258), - [anon_sym_i8] = ACTIONS(3258), - [anon_sym_u16] = ACTIONS(3258), - [anon_sym_i16] = ACTIONS(3258), - [anon_sym_u32] = ACTIONS(3258), - [anon_sym_i32] = ACTIONS(3258), - [anon_sym_u64] = ACTIONS(3258), - [anon_sym_i64] = ACTIONS(3258), - [anon_sym_u128] = ACTIONS(3258), - [anon_sym_i128] = ACTIONS(3258), - [anon_sym_isize] = ACTIONS(3258), - [anon_sym_usize] = ACTIONS(3258), - [anon_sym_f32] = ACTIONS(3258), - [anon_sym_f64] = ACTIONS(3258), - [anon_sym_bool] = ACTIONS(3258), - [anon_sym_str] = ACTIONS(3258), - [anon_sym_char] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_PIPE] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_DOT_DOT] = ACTIONS(3260), - [anon_sym_COMMA] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3260), - [anon_sym_POUND] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_default] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_gen] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_loop] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_union] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_move] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [sym_integer_literal] = ACTIONS(3260), - [aux_sym_string_literal_token1] = ACTIONS(3260), - [sym_char_literal] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3258), - [anon_sym_false] = ACTIONS(3258), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_crate] = ACTIONS(3258), - [sym_metavariable] = ACTIONS(3260), - [sym__raw_string_literal_start] = ACTIONS(3260), - [sym_float_literal] = ACTIONS(3260), - }, - [STATE(1016)] = { - [sym_line_comment] = STATE(1016), - [sym_block_comment] = STATE(1016), - [sym_identifier] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_u8] = ACTIONS(3262), - [anon_sym_i8] = ACTIONS(3262), - [anon_sym_u16] = ACTIONS(3262), - [anon_sym_i16] = ACTIONS(3262), - [anon_sym_u32] = ACTIONS(3262), - [anon_sym_i32] = ACTIONS(3262), - [anon_sym_u64] = ACTIONS(3262), - [anon_sym_i64] = ACTIONS(3262), - [anon_sym_u128] = ACTIONS(3262), - [anon_sym_i128] = ACTIONS(3262), - [anon_sym_isize] = ACTIONS(3262), - [anon_sym_usize] = ACTIONS(3262), - [anon_sym_f32] = ACTIONS(3262), - [anon_sym_f64] = ACTIONS(3262), - [anon_sym_bool] = ACTIONS(3262), - [anon_sym_str] = ACTIONS(3262), - [anon_sym_char] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym__] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3264), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_DASH_GT] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_default] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_gen] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_loop] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_union] = ACTIONS(3262), - [anon_sym_unsafe] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_move] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [sym_integer_literal] = ACTIONS(3264), - [aux_sym_string_literal_token1] = ACTIONS(3264), - [sym_char_literal] = ACTIONS(3264), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_crate] = ACTIONS(3262), - [sym_metavariable] = ACTIONS(3264), - [sym__raw_string_literal_start] = ACTIONS(3264), - [sym_float_literal] = ACTIONS(3264), - }, - [STATE(1017)] = { - [sym_line_comment] = STATE(1017), - [sym_block_comment] = STATE(1017), - [sym_identifier] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_u8] = ACTIONS(1587), - [anon_sym_i8] = ACTIONS(1587), - [anon_sym_u16] = ACTIONS(1587), - [anon_sym_i16] = ACTIONS(1587), - [anon_sym_u32] = ACTIONS(1587), - [anon_sym_i32] = ACTIONS(1587), - [anon_sym_u64] = ACTIONS(1587), - [anon_sym_i64] = ACTIONS(1587), - [anon_sym_u128] = ACTIONS(1587), - [anon_sym_i128] = ACTIONS(1587), - [anon_sym_isize] = ACTIONS(1587), - [anon_sym_usize] = ACTIONS(1587), - [anon_sym_f32] = ACTIONS(1587), - [anon_sym_f64] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_str] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym__] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_DASH_GT] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_gen] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsafe] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1587), - [anon_sym_move] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [aux_sym_string_literal_token1] = ACTIONS(1589), - [sym_char_literal] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), + [STATE(1030)] = { + [sym_line_comment] = STATE(1030), + [sym_block_comment] = STATE(1030), + [sym_identifier] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_RBRACK] = ACTIONS(2782), + [anon_sym_LBRACE] = 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_COMMA] = 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_for] = ACTIONS(2784), + [anon_sym_gen] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_loop] = ACTIONS(2784), + [anon_sym_match] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_unsafe] = ACTIONS(2784), + [anon_sym_while] = 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(1031)] = { + [sym_line_comment] = STATE(1031), + [sym_block_comment] = STATE(1031), + [sym_identifier] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_RBRACK] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_u8] = ACTIONS(3290), + [anon_sym_i8] = ACTIONS(3290), + [anon_sym_u16] = ACTIONS(3290), + [anon_sym_i16] = ACTIONS(3290), + [anon_sym_u32] = ACTIONS(3290), + [anon_sym_i32] = ACTIONS(3290), + [anon_sym_u64] = ACTIONS(3290), + [anon_sym_i64] = ACTIONS(3290), + [anon_sym_u128] = ACTIONS(3290), + [anon_sym_i128] = ACTIONS(3290), + [anon_sym_isize] = ACTIONS(3290), + [anon_sym_usize] = ACTIONS(3290), + [anon_sym_f32] = ACTIONS(3290), + [anon_sym_f64] = ACTIONS(3290), + [anon_sym_bool] = ACTIONS(3290), + [anon_sym_str] = ACTIONS(3290), + [anon_sym_char] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_PIPE] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_DOT_DOT] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_POUND] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_gen] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_loop] = ACTIONS(3290), + [anon_sym_match] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_unsafe] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_move] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3292), + [aux_sym_string_literal_token1] = ACTIONS(3292), + [sym_char_literal] = ACTIONS(3292), + [anon_sym_true] = ACTIONS(3290), + [anon_sym_false] = ACTIONS(3290), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_crate] = ACTIONS(3290), + [sym_metavariable] = ACTIONS(3292), + [sym__raw_string_literal_start] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + }, + [STATE(1032)] = { + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym__] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_COLON_COLON] = ACTIONS(1593), + [anon_sym_DASH_GT] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1591), + [anon_sym_break] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1591), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1591), + [anon_sym_for] = ACTIONS(1591), + [anon_sym_gen] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1591), + [anon_sym_loop] = ACTIONS(1591), + [anon_sym_match] = ACTIONS(1591), + [anon_sym_return] = ACTIONS(1591), + [anon_sym_static] = ACTIONS(1591), + [anon_sym_union] = ACTIONS(1591), + [anon_sym_unsafe] = ACTIONS(1591), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_yield] = ACTIONS(1591), + [anon_sym_move] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1591), + [sym_integer_literal] = ACTIONS(1593), + [aux_sym_string_literal_token1] = ACTIONS(1593), + [sym_char_literal] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1587), - [sym_super] = ACTIONS(1587), - [sym_crate] = ACTIONS(1587), - [sym_metavariable] = ACTIONS(1589), - [sym__raw_string_literal_start] = ACTIONS(1589), - [sym_float_literal] = ACTIONS(1589), + [sym_self] = ACTIONS(1591), + [sym_super] = ACTIONS(1591), + [sym_crate] = ACTIONS(1591), + [sym_metavariable] = ACTIONS(1593), + [sym__raw_string_literal_start] = ACTIONS(1593), + [sym_float_literal] = ACTIONS(1593), + }, + [STATE(1033)] = { + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [sym_identifier] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_u8] = ACTIONS(3294), + [anon_sym_i8] = ACTIONS(3294), + [anon_sym_u16] = ACTIONS(3294), + [anon_sym_i16] = ACTIONS(3294), + [anon_sym_u32] = ACTIONS(3294), + [anon_sym_i32] = ACTIONS(3294), + [anon_sym_u64] = ACTIONS(3294), + [anon_sym_i64] = ACTIONS(3294), + [anon_sym_u128] = ACTIONS(3294), + [anon_sym_i128] = ACTIONS(3294), + [anon_sym_isize] = ACTIONS(3294), + [anon_sym_usize] = ACTIONS(3294), + [anon_sym_f32] = ACTIONS(3294), + [anon_sym_f64] = ACTIONS(3294), + [anon_sym_bool] = ACTIONS(3294), + [anon_sym_str] = ACTIONS(3294), + [anon_sym_char] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym__] = ACTIONS(3294), + [anon_sym_DOT_DOT] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3294), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_gen] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_loop] = ACTIONS(3294), + [anon_sym_match] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_unsafe] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3294), + [anon_sym_move] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [sym_integer_literal] = ACTIONS(3296), + [aux_sym_string_literal_token1] = ACTIONS(3296), + [sym_char_literal] = ACTIONS(3296), + [anon_sym_true] = ACTIONS(3294), + [anon_sym_false] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3294), + [sym_super] = ACTIONS(3294), + [sym_crate] = ACTIONS(3294), + [sym_metavariable] = ACTIONS(3296), + [sym__raw_string_literal_start] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), }, }; @@ -111518,10 +112849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1018), 2, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(1123), 18, + ACTIONS(1113), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -111540,7 +112871,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3266), 42, + ACTIONS(3298), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111588,10 +112919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1019), 2, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3000), 18, + ACTIONS(2782), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -111610,7 +112941,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3002), 39, + ACTIONS(2784), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111655,10 +112986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1020), 2, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 20, + ACTIONS(3302), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111679,7 +113010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3268), 35, + ACTIONS(3300), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111722,50 +113053,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1263), 1, + ACTIONS(1241), 1, anon_sym_DASH, - ACTIONS(1311), 1, + ACTIONS(1289), 1, aux_sym_string_literal_token1, - ACTIONS(1321), 1, + ACTIONS(1299), 1, sym__raw_string_literal_start, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(3272), 1, + ACTIONS(3304), 1, sym_identifier, - ACTIONS(3282), 1, + ACTIONS(3314), 1, sym_metavariable, - STATE(2082), 1, + STATE(2111), 1, sym_scoped_identifier, - STATE(2124), 1, + STATE(2163), 1, sym__literal_pattern, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - ACTIONS(1313), 2, + ACTIONS(1291), 2, anon_sym_true, anon_sym_false, - STATE(1021), 2, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 3, + ACTIONS(1287), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3276), 3, + ACTIONS(3308), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3280), 3, + ACTIONS(3312), 3, sym_self, sym_super, sym_crate, - STATE(2064), 4, + STATE(2088), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3274), 7, + ACTIONS(3306), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -111773,7 +113104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3278), 20, + ACTIONS(3310), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111801,50 +113132,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1263), 1, + ACTIONS(1241), 1, anon_sym_DASH, - ACTIONS(1311), 1, + ACTIONS(1289), 1, aux_sym_string_literal_token1, - ACTIONS(1321), 1, + ACTIONS(1299), 1, sym__raw_string_literal_start, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3294), 1, + ACTIONS(3326), 1, sym_metavariable, - STATE(2105), 1, + STATE(2136), 1, sym_scoped_identifier, - STATE(2156), 1, + STATE(2159), 1, sym__literal_pattern, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - ACTIONS(1313), 2, + ACTIONS(1291), 2, anon_sym_true, anon_sym_false, - STATE(1022), 2, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 3, + ACTIONS(1287), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3288), 3, + ACTIONS(3320), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3292), 3, + ACTIONS(3324), 3, sym_self, sym_super, sym_crate, - STATE(2064), 4, + STATE(2088), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3286), 7, + ACTIONS(3318), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -111852,7 +113183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3290), 20, + ACTIONS(3322), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111880,50 +113211,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1263), 1, + ACTIONS(1241), 1, anon_sym_DASH, - ACTIONS(1311), 1, + ACTIONS(1289), 1, aux_sym_string_literal_token1, - ACTIONS(1321), 1, + ACTIONS(1299), 1, sym__raw_string_literal_start, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(3296), 1, + ACTIONS(3328), 1, sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3338), 1, sym_metavariable, - STATE(2099), 1, + STATE(2105), 1, sym_scoped_identifier, - STATE(2141), 1, + STATE(2165), 1, sym__literal_pattern, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - ACTIONS(1313), 2, + ACTIONS(1291), 2, anon_sym_true, anon_sym_false, - STATE(1023), 2, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 3, + ACTIONS(1287), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3300), 3, + ACTIONS(3332), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3304), 3, + ACTIONS(3336), 3, sym_self, sym_super, sym_crate, - STATE(2064), 4, + STATE(2088), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3298), 7, + ACTIONS(3330), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -111931,7 +113262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3302), 20, + ACTIONS(3334), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111952,27 +113283,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [517] = 11, + [517] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - ACTIONS(3314), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, anon_sym_BANG, - ACTIONS(3316), 1, + ACTIONS(3346), 1, anon_sym_COLON_COLON, - ACTIONS(3318), 1, - anon_sym_LT2, - STATE(1310), 1, - sym_type_arguments, - STATE(1319), 1, - sym_parameters, - STATE(1024), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3350), 1, + anon_sym_move, + STATE(1449), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 17, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111983,19 +113316,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(3308), 27, + ACTIONS(3340), 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, @@ -112008,39 +113339,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [594] = 12, + [596] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3324), 1, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(3358), 1, anon_sym_BANG, - ACTIONS(3326), 1, + ACTIONS(3360), 1, anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3330), 1, - anon_sym_move, - STATE(1503), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(1025), 2, + ACTIONS(3362), 1, + anon_sym_LT2, + STATE(1108), 1, + sym_type_arguments, + STATE(1114), 1, + sym_parameters, + STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, + ACTIONS(3356), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112051,17 +113381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3320), 28, + ACTIONS(3352), 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, @@ -112074,15 +113406,14 @@ 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, [673] = 5, @@ -112090,10 +113421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + STATE(1042), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 9, + ACTIONS(1395), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112103,7 +113434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1041), 40, + ACTIONS(1397), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112149,10 +113480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 9, + ACTIONS(1387), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112162,7 +113493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1037), 40, + ACTIONS(1389), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112208,10 +113539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1028), 2, + STATE(1044), 2, sym_line_comment, sym_block_comment, - ACTIONS(1399), 9, + ACTIONS(1383), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112221,7 +113552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1401), 40, + ACTIONS(1385), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112267,10 +113598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1029), 2, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(1383), 9, + ACTIONS(1051), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112280,7 +113611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1385), 40, + ACTIONS(1049), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112326,10 +113657,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1030), 2, + STATE(1046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1391), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1393), 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, + [993] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1047), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1437), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1439), 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, + [1057] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1048), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1047), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1045), 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, + [1121] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(3362), 1, + anon_sym_LT2, + ACTIONS(3368), 1, + anon_sym_COLON_COLON, + STATE(1108), 1, + sym_type_arguments, + STATE(1114), 1, + sym_parameters, + STATE(1049), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3366), 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(3364), 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, + [1195] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(1403), 9, + ACTIONS(1471), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112339,7 +113911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1405), 40, + ACTIONS(1473), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112380,25 +113952,100 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [993] = 5, + [1259] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1031), 2, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(3362), 1, + anon_sym_LT2, + ACTIONS(3368), 1, + anon_sym_COLON_COLON, + STATE(1108), 1, + sym_type_arguments, + STATE(1114), 1, + sym_parameters, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(1387), 9, + ACTIONS(3372), 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(3370), 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_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_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, + [1333] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3378), 1, + anon_sym_POUND, + STATE(1395), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1052), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3376), 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(1389), 40, + ACTIONS(3374), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112416,38 +114063,93 @@ 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, - [1057] = 5, + [1401] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(3362), 1, + anon_sym_LT2, + ACTIONS(3368), 1, + anon_sym_COLON_COLON, + STATE(1108), 1, + sym_type_arguments, + STATE(1114), 1, + sym_parameters, + STATE(1053), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3383), 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(3381), 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, + [1475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1032), 2, + STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(1409), 9, + ACTIONS(1413), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112457,7 +114159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1411), 40, + ACTIONS(1415), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112498,25 +114200,96 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1121] = 10, + [1539] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3385), 1, + sym_identifier, + ACTIONS(3389), 1, anon_sym_LPAREN, - ACTIONS(3318), 1, - anon_sym_LT2, - ACTIONS(3336), 1, + ACTIONS(3391), 1, + anon_sym_STAR, + ACTIONS(3395), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_COLON_COLON, - STATE(1310), 1, - sym_type_arguments, - STATE(1319), 1, - sym_parameters, - STATE(1033), 2, + ACTIONS(3399), 1, + anon_sym_SQUOTE, + ACTIONS(3403), 1, + anon_sym_for, + ACTIONS(3407), 1, + sym_metavariable, + STATE(2521), 1, + sym_where_predicate, + STATE(2773), 1, + sym_scoped_type_identifier, + STATE(3051), 1, + sym_generic_type, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + STATE(1055), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3401), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + STATE(3295), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3393), 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, + [1640] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3413), 1, + anon_sym_BANG, + ACTIONS(3415), 1, + anon_sym_COLON_COLON, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3334), 17, + ACTIONS(3411), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112534,8 +114307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3332), 27, + ACTIONS(3409), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112562,25 +114336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1195] = 10, + anon_sym_LT2, + [1707] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - ACTIONS(3318), 1, - anon_sym_LT2, - ACTIONS(3336), 1, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3423), 1, anon_sym_COLON_COLON, - STATE(1310), 1, - sym_type_arguments, - STATE(1319), 1, - sym_parameters, - STATE(1034), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 17, + ACTIONS(3419), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112598,8 +114367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3338), 27, + ACTIONS(3417), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112626,25 +114396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1269] = 10, + anon_sym_LT2, + [1774] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, + ACTIONS(3354), 1, anon_sym_LPAREN, - ACTIONS(3318), 1, + ACTIONS(3362), 1, anon_sym_LT2, - ACTIONS(3336), 1, - anon_sym_COLON_COLON, - STATE(1310), 1, + STATE(1109), 1, sym_type_arguments, - STATE(1319), 1, + STATE(1115), 1, sym_parameters, - STATE(1035), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3344), 17, + ACTIONS(3427), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112662,7 +114431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3342), 27, + ACTIONS(3425), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -112690,25 +114459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1343] = 5, + [1845] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 9, + ACTIONS(2306), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1471), 40, + ACTIONS(2308), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112732,7 +114501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -112749,36 +114517,327 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1407] = 7, + [1908] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3350), 1, - anon_sym_POUND, - STATE(1306), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1037), 3, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(3362), 1, + anon_sym_LT2, + STATE(1109), 1, + sym_type_arguments, + STATE(1115), 1, + sym_parameters, + STATE(1060), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3348), 14, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3431), 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(3429), 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, + [1979] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + STATE(1061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3435), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3433), 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, + [2046] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(3362), 1, + anon_sym_LT2, + STATE(1109), 1, + sym_type_arguments, + STATE(1115), 1, + sym_parameters, + STATE(1062), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3443), 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(3441), 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, + [2117] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3385), 1, + sym_identifier, + ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(3391), 1, + anon_sym_STAR, + ACTIONS(3395), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3399), 1, + anon_sym_SQUOTE, + ACTIONS(3403), 1, + anon_sym_for, + ACTIONS(3407), 1, + sym_metavariable, + STATE(2361), 1, + sym_where_predicate, + STATE(2773), 1, + sym_scoped_type_identifier, + STATE(3051), 1, + sym_generic_type, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + STATE(1063), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3445), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3295), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3393), 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, + [2218] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3385), 1, + sym_identifier, + ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(3391), 1, + anon_sym_STAR, + ACTIONS(3395), 1, + anon_sym_AMP, + ACTIONS(3397), 1, + anon_sym_COLON_COLON, + ACTIONS(3399), 1, + anon_sym_SQUOTE, + ACTIONS(3403), 1, + anon_sym_for, + ACTIONS(3407), 1, sym_metavariable, - ACTIONS(3346), 31, + STATE(2521), 1, + sym_where_predicate, + STATE(2773), 1, + sym_scoped_type_identifier, + STATE(3051), 1, + sym_generic_type, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + STATE(1064), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3447), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3295), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3393), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112796,39 +114855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1475] = 5, + [2319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1038), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 9, + ACTIONS(1910), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1513), 40, + ACTIONS(1912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112852,7 +114897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -112869,77 +114913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1539] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - ACTIONS(3318), 1, - anon_sym_LT2, - STATE(1311), 1, - sym_type_arguments, - STATE(1320), 1, - sym_parameters, - STATE(1039), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3355), 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(3353), 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, - [1610] = 5, + [2382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1040), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 9, + ACTIONS(2786), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112949,7 +114931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2788), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112989,75 +114971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1673] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - STATE(1041), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 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(3357), 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, - [1740] = 5, + [2445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 9, + ACTIONS(2078), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113067,7 +114989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2678), 39, + ACTIONS(2080), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113107,23 +115029,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1803] = 9, + [2508] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, + ACTIONS(3354), 1, anon_sym_LPAREN, - ACTIONS(3318), 1, + ACTIONS(3362), 1, anon_sym_LT2, - STATE(1311), 1, + STATE(1109), 1, sym_type_arguments, - STATE(1320), 1, + STATE(1115), 1, sym_parameters, - STATE(1043), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3367), 17, + ACTIONS(3451), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113141,7 +115063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3365), 27, + ACTIONS(3449), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -113169,19 +115091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1874] = 7, + [2579] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 1, + ACTIONS(3457), 1, anon_sym_BANG, - ACTIONS(3375), 1, + ACTIONS(3459), 1, anon_sym_COLON_COLON, - STATE(1044), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3371), 17, + ACTIONS(3455), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113199,7 +115121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3369), 29, + ACTIONS(3453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113229,159 +115151,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1941] = 7, + [2646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 1, - anon_sym_BANG, - ACTIONS(3383), 1, - anon_sym_COLON_COLON, - STATE(1045), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3379), 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(3377), 29, + ACTIONS(2890), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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_EQ, + anon_sym_LT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2008] = 9, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2892), 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, + [2709] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3192), 1, + anon_sym_QMARK, + ACTIONS(3204), 1, + anon_sym_fn, + ACTIONS(3461), 1, + sym_identifier, + ACTIONS(3463), 1, anon_sym_LPAREN, - ACTIONS(3318), 1, - anon_sym_LT2, - STATE(1311), 1, - sym_type_arguments, - STATE(1320), 1, - sym_parameters, - STATE(1046), 2, + ACTIONS(3467), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_default, + ACTIONS(3471), 1, + anon_sym_for, + ACTIONS(3477), 1, + sym_metavariable, + STATE(1068), 1, + sym_scoped_type_identifier, + STATE(1112), 1, + sym_generic_type, + STATE(1621), 1, + sym_for_lifetimes, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(3454), 1, + sym_function_modifiers, + STATE(3604), 1, + sym_scoped_identifier, + STATE(3640), 1, + sym_generic_type_with_turbofish, + STATE(3651), 1, + sym_bracketed_type, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 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, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3475), 3, + sym_self, + sym_super, + sym_crate, + STATE(1470), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3465), 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, + [2815] = 27, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3385), 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, - [2079] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 1, - anon_sym_BANG, - ACTIONS(3395), 1, + ACTIONS(1237), 1, + anon_sym_QMARK, + ACTIONS(1271), 1, + anon_sym_fn, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(3397), 1, anon_sym_COLON_COLON, - STATE(1047), 2, + ACTIONS(3407), 1, + sym_metavariable, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_default, + ACTIONS(3485), 1, + anon_sym_for, + STATE(1622), 1, + sym_for_lifetimes, + STATE(1976), 1, + sym_scoped_type_identifier, + STATE(2018), 1, + sym_generic_type, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3571), 1, + sym_function_modifiers, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + ACTIONS(3401), 2, + anon_sym_gen, + anon_sym_union, + STATE(1072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + STATE(2043), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3481), 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, + [2921] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3391), 17, + ACTIONS(3421), 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(3389), 29, + ACTIONS(3423), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113400,94 +115411,45 @@ 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, - anon_sym_LT2, - [2146] = 5, + [2983] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2468), 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, + ACTIONS(3487), 1, anon_sym_POUND, - sym_metavariable, - ACTIONS(2470), 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, - [2209] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1049), 2, + STATE(1433), 1, + sym_attribute_item, + STATE(1074), 3, sym_line_comment, sym_block_comment, - ACTIONS(1942), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + aux_sym_enum_variant_list_repeat1, + ACTIONS(759), 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(1944), 39, + ACTIONS(3288), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113508,61 +115470,47 @@ 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, - [2272] = 9, + [3049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - ACTIONS(3318), 1, - anon_sym_LT2, - STATE(1311), 1, - sym_type_arguments, - STATE(1320), 1, - sym_parameters, - STATE(1050), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3399), 17, + ACTIONS(3413), 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(3397), 27, + ACTIONS(3415), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -113579,35 +115527,46 @@ 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, - [2343] = 5, + [3111] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1051), 2, + ACTIONS(3494), 1, + anon_sym_RBRACE, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3492), 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(2830), 39, + ACTIONS(3490), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113625,37 +115584,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, - [2406] = 5, + [3175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1052), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3381), 16, + ACTIONS(3457), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113672,7 +115623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3383), 31, + ACTIONS(3459), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113704,65 +115655,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2468] = 24, + [3237] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3358), 1, + anon_sym_BANG, + ACTIONS(3496), 1, + anon_sym_LBRACE, + ACTIONS(3498), 1, + anon_sym_COLON_COLON, + STATE(1506), 1, + sym_field_initializer_list, + STATE(1078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 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(1431), 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, + [3307] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - sym_identifier, - ACTIONS(3405), 1, + ACTIONS(1273), 1, + anon_sym_for, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3192), 1, + anon_sym_QMARK, + ACTIONS(3204), 1, + anon_sym_fn, + ACTIONS(3463), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, - anon_sym_STAR, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3413), 1, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3415), 1, - anon_sym_SQUOTE, - ACTIONS(3419), 1, - anon_sym_for, - ACTIONS(3423), 1, + ACTIONS(3469), 1, + anon_sym_default, + ACTIONS(3477), 1, sym_metavariable, - STATE(2592), 1, - sym_where_predicate, - STATE(2624), 1, + ACTIONS(3500), 1, + sym_identifier, + STATE(1060), 1, sym_scoped_type_identifier, - STATE(2948), 1, + STATE(1177), 1, sym_generic_type, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3547), 1, + STATE(1621), 1, + sym_for_lifetimes, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(3454), 1, + sym_function_modifiers, + STATE(3604), 1, sym_scoped_identifier, - STATE(3553), 1, + STATE(3640), 1, + sym_generic_type_with_turbofish, + STATE(3651), 1, sym_bracketed_type, - ACTIONS(3403), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1053), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3417), 3, - anon_sym_default, + ACTIONS(3473), 2, anon_sym_gen, anon_sym_union, - ACTIONS(3421), 3, + STATE(1079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3475), 3, sym_self, sym_super, sym_crate, - STATE(3139), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, + STATE(1444), 3, + sym_removed_trait_bound, + sym_function_type, sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3409), 17, + ACTIONS(3465), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113780,68 +115795,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2568] = 27, + [3413] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, + ACTIONS(1273), 1, anon_sym_for, - ACTIONS(1301), 1, + ACTIONS(1279), 1, anon_sym_extern, - ACTIONS(3160), 1, + ACTIONS(3154), 1, anon_sym_QMARK, - ACTIONS(3172), 1, + ACTIONS(3166), 1, anon_sym_fn, - ACTIONS(3425), 1, + ACTIONS(3502), 1, sym_identifier, - ACTIONS(3427), 1, + ACTIONS(3504), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3508), 1, anon_sym_COLON_COLON, - ACTIONS(3433), 1, + ACTIONS(3510), 1, anon_sym_default, - ACTIONS(3439), 1, + ACTIONS(3516), 1, sym_metavariable, - STATE(1039), 1, + STATE(1590), 1, sym_scoped_type_identifier, - STATE(1084), 1, + STATE(1623), 1, + sym_for_lifetimes, + STATE(1643), 1, sym_generic_type, - STATE(1583), 1, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(3594), 1, + sym_function_modifiers, + STATE(3631), 1, + sym_scoped_identifier, + STATE(3649), 1, + sym_generic_type_with_turbofish, + STATE(3655), 1, + sym_bracketed_type, + ACTIONS(3512), 2, + anon_sym_gen, + anon_sym_union, + STATE(1080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3514), 3, + sym_self, + sym_super, + sym_crate, + STATE(1719), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3506), 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, + [3519] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3154), 1, + anon_sym_QMARK, + ACTIONS(3166), 1, + anon_sym_fn, + ACTIONS(3504), 1, + anon_sym_LPAREN, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_default, + ACTIONS(3516), 1, + sym_metavariable, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3520), 1, + anon_sym_for, + STATE(1582), 1, + sym_scoped_type_identifier, + STATE(1623), 1, sym_for_lifetimes, + STATE(1686), 1, + sym_generic_type, STATE(2258), 1, aux_sym_function_modifiers_repeat1, - STATE(2393), 1, + STATE(2398), 1, sym_extern_modifier, - STATE(3415), 1, + STATE(3594), 1, sym_function_modifiers, - STATE(3567), 1, + STATE(3631), 1, sym_scoped_identifier, - STATE(3598), 1, + STATE(3649), 1, sym_generic_type_with_turbofish, - STATE(3609), 1, + STATE(3655), 1, sym_bracketed_type, - ACTIONS(3435), 2, + ACTIONS(3512), 2, anon_sym_gen, anon_sym_union, - STATE(1054), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1265), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3437), 3, + ACTIONS(3514), 3, sym_self, sym_super, sym_crate, - STATE(1450), 3, + STATE(1893), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3429), 17, + ACTIONS(3506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113859,23 +115953,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2674] = 9, + [3625] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3314), 1, - anon_sym_BANG, - ACTIONS(3441), 1, - anon_sym_LBRACE, - ACTIONS(3443), 1, + ACTIONS(3526), 1, + anon_sym_RBRACE, + STATE(1082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3524), 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, - STATE(1468), 1, - sym_field_initializer_list, - STATE(1055), 2, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3522), 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, + [3689] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + ACTIONS(3528), 1, + anon_sym_BANG, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3342), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113891,12 +116046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 28, + anon_sym_as, + ACTIONS(3340), 23, 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, @@ -113917,35 +116071,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [2744] = 8, + [3757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_BANG, - STATE(1056), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3322), 16, + ACTIONS(3437), 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, @@ -113955,11 +116096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3320), 23, + ACTIONS(3439), 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, @@ -113980,126 +116123,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [2812] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3453), 1, - anon_sym_RBRACE, - STATE(1057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3451), 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_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3449), 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, - [2876] = 27, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3819] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, - anon_sym_for, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3118), 1, + ACTIONS(1237), 1, anon_sym_QMARK, - ACTIONS(3130), 1, + ACTIONS(1271), 1, anon_sym_fn, - ACTIONS(3455), 1, - sym_identifier, - ACTIONS(3457), 1, + ACTIONS(1273), 1, + anon_sym_for, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3389), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3397), 1, anon_sym_COLON_COLON, - ACTIONS(3463), 1, - anon_sym_default, - ACTIONS(3469), 1, + ACTIONS(3407), 1, sym_metavariable, - STATE(1553), 1, - sym_scoped_type_identifier, - STATE(1594), 1, + ACTIONS(3483), 1, + anon_sym_default, + ACTIONS(3532), 1, + sym_identifier, + STATE(1622), 1, sym_for_lifetimes, - STATE(1618), 1, + STATE(1983), 1, + sym_scoped_type_identifier, + STATE(2017), 1, sym_generic_type, STATE(2258), 1, aux_sym_function_modifiers_repeat1, - STATE(2393), 1, + STATE(2398), 1, sym_extern_modifier, - STATE(3557), 1, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3571), 1, sym_function_modifiers, - STATE(3590), 1, + STATE(3577), 1, sym_scoped_identifier, - STATE(3607), 1, - sym_generic_type_with_turbofish, - STATE(3613), 1, + STATE(3590), 1, sym_bracketed_type, - ACTIONS(3465), 2, + ACTIONS(3401), 2, anon_sym_gen, anon_sym_union, - STATE(1058), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1265), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3467), 3, + ACTIONS(3405), 3, sym_self, sym_super, sym_crate, - STATE(1875), 3, + STATE(2061), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3459), 17, + ACTIONS(3481), 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, + [3925] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3528), 1, + anon_sym_BANG, + ACTIONS(3534), 1, + anon_sym_move, + STATE(409), 1, + sym_block, + STATE(3574), 1, + sym_label, + STATE(1086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3342), 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(3340), 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, + [4000] = 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(3538), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3536), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114117,32 +116310,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2982] = 7, + 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_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4061] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, - anon_sym_POUND, - STATE(1482), 1, - sym_attribute_item, - STATE(1059), 3, + STATE(1088), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(759), 11, + ACTIONS(3542), 13, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3256), 33, + ACTIONS(3540), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114167,24 +116373,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3048] = 5, + [4122] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1060), 2, + ACTIONS(3544), 1, + anon_sym_LBRACE, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3361), 16, + ACTIONS(3413), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114201,13 +116409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3363), 31, + ACTIONS(3415), 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, @@ -114230,71 +116437,25 @@ 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, - [3110] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [4185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3160), 1, - anon_sym_QMARK, - ACTIONS(3172), 1, - anon_sym_fn, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_COLON_COLON, - ACTIONS(3433), 1, - anon_sym_default, - ACTIONS(3439), 1, - sym_metavariable, - ACTIONS(3474), 1, - sym_identifier, - ACTIONS(3476), 1, - anon_sym_for, - STATE(1046), 1, - sym_scoped_type_identifier, - STATE(1317), 1, - sym_generic_type, - STATE(1583), 1, - sym_for_lifetimes, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(3415), 1, - sym_function_modifiers, - STATE(3567), 1, - sym_scoped_identifier, - STATE(3598), 1, - sym_generic_type_with_turbofish, - STATE(3609), 1, - sym_bracketed_type, - ACTIONS(3435), 2, - anon_sym_gen, - anon_sym_union, - STATE(1061), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3437), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3429), 17, + ACTIONS(3548), 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(3546), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114312,159 +116473,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3216] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - anon_sym_QMARK, - ACTIONS(1293), 1, - anon_sym_fn, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3405), 1, - anon_sym_LPAREN, - ACTIONS(3413), 1, - anon_sym_COLON_COLON, - ACTIONS(3423), 1, - sym_metavariable, - ACTIONS(3478), 1, - sym_identifier, - ACTIONS(3482), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3484), 1, - anon_sym_for, - STATE(1576), 1, - sym_for_lifetimes, - STATE(1953), 1, - sym_scoped_type_identifier, - STATE(1991), 1, - sym_generic_type, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3444), 1, - sym_function_modifiers, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - ACTIONS(3417), 2, + 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, - STATE(1062), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(3421), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2009), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3480), 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, - [3322] = 6, + [4246] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3490), 1, - anon_sym_RBRACE, - STATE(1063), 2, + ACTIONS(3550), 1, + anon_sym_LBRACE, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3488), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3437), 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(3439), 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_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3486), 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, - [3386] = 5, + anon_sym_as, + anon_sym_else, + [4309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3393), 16, + ACTIONS(3554), 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, @@ -114474,7 +116576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3395), 31, + ACTIONS(3552), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114506,223 +116608,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3448] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [4370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3118), 1, - anon_sym_QMARK, - ACTIONS(3130), 1, - anon_sym_fn, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3463), 1, - anon_sym_default, - ACTIONS(3469), 1, - sym_metavariable, - ACTIONS(3492), 1, - sym_identifier, - ACTIONS(3494), 1, - anon_sym_for, - STATE(1556), 1, - sym_scoped_type_identifier, - STATE(1594), 1, - sym_for_lifetimes, - STATE(1607), 1, - sym_generic_type, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(3557), 1, - sym_function_modifiers, - STATE(3590), 1, - sym_scoped_identifier, - STATE(3607), 1, - sym_generic_type_with_turbofish, - STATE(3613), 1, - sym_bracketed_type, - ACTIONS(3465), 2, - anon_sym_gen, - anon_sym_union, - STATE(1065), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3467), 3, - sym_self, - sym_super, - sym_crate, - STATE(1767), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3459), 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, - [3554] = 27, - ACTIONS(29), 1, + ACTIONS(3558), 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(3556), 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, + [4431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - anon_sym_QMARK, - ACTIONS(1293), 1, - anon_sym_fn, - ACTIONS(1295), 1, - anon_sym_for, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3405), 1, - anon_sym_LPAREN, - ACTIONS(3413), 1, - anon_sym_COLON_COLON, - ACTIONS(3423), 1, - sym_metavariable, - ACTIONS(3482), 1, - anon_sym_default, - ACTIONS(3496), 1, - sym_identifier, - STATE(1576), 1, - sym_for_lifetimes, - STATE(1954), 1, - sym_scoped_type_identifier, - STATE(1976), 1, - sym_generic_type, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3444), 1, - sym_function_modifiers, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - ACTIONS(3417), 2, - anon_sym_gen, - anon_sym_union, - STATE(1066), 2, + ACTIONS(3560), 1, + anon_sym_LBRACE, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3421), 3, - sym_self, - sym_super, - sym_crate, - STATE(2021), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3480), 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, - [3660] = 24, - ACTIONS(29), 1, + ACTIONS(3457), 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(3459), 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, + [4494] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - sym_identifier, - ACTIONS(3405), 1, + STATE(1095), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 15, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(3407), 1, - anon_sym_STAR, - ACTIONS(3411), 1, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_AMP, - ACTIONS(3413), 1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(3415), 1, - anon_sym_SQUOTE, - ACTIONS(3419), 1, - anon_sym_for, - ACTIONS(3423), 1, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - STATE(2592), 1, - sym_where_predicate, - STATE(2624), 1, - sym_scoped_type_identifier, - STATE(2948), 1, - sym_generic_type, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - ACTIONS(3498), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3417), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3421), 3, - sym_self, - sym_super, - sym_crate, - STATE(3139), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3409), 17, + ACTIONS(3490), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114740,22 +116763,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3760] = 5, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3373), 16, + ACTIONS(1583), 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, @@ -114765,7 +116801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3375), 31, + ACTIONS(1585), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114773,6 +116809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114793,27 +116830,34 @@ 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, - [3822] = 5, + [4616] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3524), 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(2402), 39, + ACTIONS(3522), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114831,37 +116875,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, - [3883] = 5, + [4677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114869,7 +116905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(1816), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114909,191 +116945,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3944] = 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(2022), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + [4738] = 21, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2024), 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, - [4005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2026), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1655), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3320), 1, + anon_sym_if, + ACTIONS(3562), 1, + sym_identifier, + ACTIONS(3566), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3570), 1, sym_metavariable, - ACTIONS(2028), 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, - [4066] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1073), 2, + STATE(2608), 1, + sym_scoped_identifier, + STATE(3011), 1, + sym__literal_pattern, + STATE(3586), 1, + sym_bracketed_type, + STATE(3599), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3318), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 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(2016), 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, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3568), 3, sym_self, sym_super, sym_crate, - [4127] = 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(2138), 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(2140), 39, + STATE(2453), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3564), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115111,205 +117014,189 @@ 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, - [4188] = 5, + [4831] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(3427), 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(3425), 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(2144), 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, - [4249] = 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, + [4894] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(3427), 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(3425), 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(2148), 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, - [4310] = 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, + [4957] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + ACTIONS(3576), 1, + anon_sym_COLON_COLON, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 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(2152), 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, - [4371] = 5, + ACTIONS(3427), 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(3425), 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, + [5020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115317,7 +117204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 39, + ACTIONS(2542), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115357,15 +117244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4432] = 5, + [5081] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1079), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115373,7 +117260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(2602), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115413,23 +117300,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4493] = 5, + [5142] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2230), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1655), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3332), 1, + anon_sym_if, + ACTIONS(3566), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3578), 1, + sym_identifier, + ACTIONS(3584), 1, sym_metavariable, - ACTIONS(2232), 39, + STATE(2662), 1, + sym_scoped_identifier, + STATE(2922), 1, + sym__literal_pattern, + STATE(3586), 1, + sym_bracketed_type, + STATE(3599), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3330), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3582), 3, + sym_self, + sym_super, + sym_crate, + STATE(2453), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3580), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115447,45 +117369,117 @@ 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, - [4554] = 5, + [5235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(3588), 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(3586), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5296] = 21, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1655), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3308), 1, + anon_sym_if, + ACTIONS(3566), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3590), 1, + sym_identifier, + ACTIONS(3596), 1, sym_metavariable, - ACTIONS(2256), 39, + STATE(2670), 1, + sym_scoped_identifier, + STATE(2940), 1, + sym__literal_pattern, + STATE(3586), 1, + sym_bracketed_type, + STATE(3599), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3306), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1107), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3594), 3, + sym_self, + sym_super, + sym_crate, + STATE(2453), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3592), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115503,37 +117497,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, - [4615] = 5, + [5389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 15, + ACTIONS(3600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115549,7 +117524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 31, + ACTIONS(3598), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115581,15 +117556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4676] = 5, + [5450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 15, + ACTIONS(3604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115605,7 +117580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3504), 31, + ACTIONS(3602), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115633,21 +117608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4737] = 6, + [5511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - STATE(1084), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 15, + ACTIONS(3300), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115663,7 +117636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3353), 30, + ACTIONS(3302), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115671,6 +117644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115694,73 +117668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4800] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1085), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3451), 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(3449), 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, - [4861] = 6, + [5572] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3610), 1, anon_sym_DASH_GT, - STATE(1086), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 15, + ACTIONS(3608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115776,7 +117694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 30, + ACTIONS(3606), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115807,463 +117725,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4924] = 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(2328), 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(2330), 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, - [4985] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2332), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2334), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [5046] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2352), 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(2354), 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, - [5107] = 5, + [5635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2360), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(3576), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2362), 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, - [5168] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(3451), 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(3449), 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(2366), 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, - [5229] = 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, + [5698] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + ACTIONS(3576), 1, + anon_sym_COLON_COLON, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(3443), 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(3441), 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(2370), 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, - [5290] = 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, + [5761] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + ACTIONS(3616), 1, + anon_sym_DASH_GT, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(3614), 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(3612), 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(2374), 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, - [5351] = 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, + [5824] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + ACTIONS(3622), 1, + anon_sym_DASH_GT, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(3620), 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(3618), 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(2378), 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, - [5412] = 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, + [5887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116271,7 +117969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 39, + ACTIONS(2348), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116311,71 +118009,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5473] = 5, + [5948] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + ACTIONS(3624), 1, + anon_sym_else, + STATE(1418), 1, + sym_else_clause, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(1353), 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(1351), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2398), 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, - [5534] = 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, + [6013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, + ACTIONS(2524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116383,7 +118083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2406), 39, + ACTIONS(2526), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116423,15 +118123,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5595] = 5, + [6074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2408), 7, + ACTIONS(2528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116439,7 +118139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2410), 39, + ACTIONS(2530), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116479,15 +118179,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5656] = 5, + [6135] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2412), 7, + ACTIONS(2532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116495,7 +118195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2414), 39, + ACTIONS(2534), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116535,15 +118235,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5717] = 5, + [6196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 7, + ACTIONS(2614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116551,7 +118251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2422), 39, + ACTIONS(2616), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116591,15 +118291,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5778] = 5, + [6257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(2618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116607,7 +118307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2434), 39, + ACTIONS(2620), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116647,15 +118347,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5839] = 5, + [6318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 7, + ACTIONS(2622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116663,7 +118363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2442), 39, + ACTIONS(2624), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116703,15 +118403,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5900] = 5, + [6379] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2444), 7, + ACTIONS(2630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116719,7 +118419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2446), 39, + ACTIONS(2632), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116759,15 +118459,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5961] = 5, + [6440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2460), 7, + ACTIONS(2634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116775,7 +118475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2462), 39, + ACTIONS(2636), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116815,15 +118515,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6022] = 5, + [6501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2472), 7, + ACTIONS(2638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116831,7 +118531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2474), 39, + ACTIONS(2640), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116871,15 +118571,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6083] = 5, + [6562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116887,7 +118587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 39, + ACTIONS(2644), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116927,15 +118627,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6144] = 5, + [6623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(2650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116943,7 +118643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 39, + ACTIONS(2652), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116983,15 +118683,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6205] = 5, + [6684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(2666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116999,7 +118699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 39, + ACTIONS(2668), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117039,15 +118739,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6266] = 5, + [6745] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(2672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117055,7 +118755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 39, + ACTIONS(2674), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117095,15 +118795,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6327] = 5, + [6806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, + ACTIONS(2682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117111,7 +118811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2500), 39, + ACTIONS(2684), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117151,15 +118851,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6388] = 5, + [6867] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 7, + ACTIONS(2700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117167,7 +118867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2504), 39, + ACTIONS(2702), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117207,15 +118907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6449] = 5, + [6928] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 7, + ACTIONS(2704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117223,7 +118923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2508), 39, + ACTIONS(2706), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117263,15 +118963,298 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6510] = 5, + [6989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1134), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 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(3409), 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, + [7050] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1135), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3628), 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(3626), 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, + [7111] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3634), 1, + anon_sym_DASH_GT, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2510), 7, + ACTIONS(3632), 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(3630), 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, + [7174] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3640), 1, + anon_sym_DASH_GT, + STATE(1137), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3638), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3636), 30, + 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, + [7237] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3646), 1, + anon_sym_DASH_GT, + STATE(1138), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3644), 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(3642), 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, + [7300] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1139), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117279,7 +119262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2512), 39, + ACTIONS(2820), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117319,15 +119302,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6571] = 5, + [7361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2514), 7, + ACTIONS(2822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117335,7 +119318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2516), 39, + ACTIONS(2824), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117375,15 +119358,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6632] = 5, + [7422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117391,7 +119374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 39, + ACTIONS(2828), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117431,15 +119414,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6693] = 5, + [7483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(2834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117447,7 +119430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 39, + ACTIONS(2836), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117487,15 +119470,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6754] = 5, + [7544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2534), 7, + ACTIONS(2838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117503,7 +119486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2536), 39, + ACTIONS(2840), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117543,15 +119526,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6815] = 5, + [7605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 7, + ACTIONS(2862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117559,7 +119542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2540), 39, + ACTIONS(2864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117599,15 +119582,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6876] = 5, + [7666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117615,7 +119598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 39, + ACTIONS(2868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117655,15 +119638,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6937] = 5, + [7727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(2870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117671,7 +119654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2548), 39, + ACTIONS(2872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117711,15 +119694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6998] = 5, + [7788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + ACTIONS(2874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117727,7 +119710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2552), 39, + ACTIONS(2876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117767,15 +119750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7059] = 5, + [7849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117783,7 +119766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2556), 39, + ACTIONS(2880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117823,15 +119806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7120] = 5, + [7910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2568), 7, + ACTIONS(2894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117839,7 +119822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2570), 39, + ACTIONS(2896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117879,15 +119862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7181] = 5, + [7971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 7, + ACTIONS(2898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117895,7 +119878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2574), 39, + ACTIONS(2900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117935,15 +119918,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7242] = 5, + [8032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2576), 7, + ACTIONS(2902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117951,7 +119934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2578), 39, + ACTIONS(2904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117991,15 +119974,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7303] = 5, + [8093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2580), 7, + ACTIONS(2906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118007,7 +119990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2582), 39, + ACTIONS(2908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118047,15 +120030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7364] = 5, + [8154] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2584), 7, + ACTIONS(2910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118063,7 +120046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2586), 39, + ACTIONS(2912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118103,15 +120086,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7425] = 5, + [8215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2588), 7, + ACTIONS(2918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118119,7 +120102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2590), 39, + ACTIONS(2920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118159,15 +120142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7486] = 5, + [8276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2592), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118175,7 +120158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2594), 39, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118215,15 +120198,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7547] = 5, + [8337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118231,7 +120214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(2940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118271,15 +120254,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7608] = 5, + [8398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2610), 7, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118287,7 +120270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2612), 39, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118327,15 +120310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7669] = 5, + [8459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 7, + ACTIONS(2986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118343,7 +120326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2616), 39, + ACTIONS(2988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118383,15 +120366,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7730] = 5, + [8520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 7, + ACTIONS(3002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118399,7 +120382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2620), 39, + ACTIONS(3004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118439,15 +120422,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7791] = 5, + [8581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2622), 7, + ACTIONS(3010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118455,7 +120438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2624), 39, + ACTIONS(3012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118495,31 +120478,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7852] = 5, + [8642] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3488), 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(3022), 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(3486), 31, + ACTIONS(3024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118537,29 +120512,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, - [7913] = 5, + [8703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2658), 7, + ACTIONS(3030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118567,7 +120550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2660), 39, + ACTIONS(3032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118607,15 +120590,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7974] = 5, + [8764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2670), 7, + ACTIONS(2610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118623,7 +120606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2672), 39, + ACTIONS(2612), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118663,127 +120646,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8035] = 5, + [8825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1164), 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), 31, + ACTIONS(2286), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8096] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2288), 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, + [8886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 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(3520), 31, + ACTIONS(2298), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8157] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2300), 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, + [8947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2708), 7, + ACTIONS(2626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118791,7 +120774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2710), 39, + ACTIONS(2628), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118831,15 +120814,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8218] = 5, + [9008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, + ACTIONS(2754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118847,7 +120830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2718), 39, + ACTIONS(2756), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118887,15 +120870,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8279] = 5, + [9069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 7, + ACTIONS(2766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118903,7 +120886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2726), 39, + ACTIONS(2768), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118943,15 +120926,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8340] = 5, + [9130] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 7, + ACTIONS(2770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118959,7 +120942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2730), 39, + ACTIONS(2772), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118999,15 +120982,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8401] = 5, + [9191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 7, + ACTIONS(2778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119015,7 +120998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2734), 39, + ACTIONS(2780), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119055,15 +121038,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8462] = 5, + [9252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 7, + ACTIONS(2998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119071,7 +121054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2738), 39, + ACTIONS(3000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119111,15 +121094,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8523] = 5, + [9313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 7, + ACTIONS(2382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119127,7 +121110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2742), 39, + ACTIONS(2384), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119167,15 +121150,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8584] = 5, + [9374] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 7, + ACTIONS(2386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119183,7 +121166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2746), 39, + ACTIONS(2388), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119223,15 +121206,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8645] = 5, + [9435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 7, + ACTIONS(2536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119239,7 +121222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2754), 39, + ACTIONS(2538), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119279,15 +121262,241 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8706] = 5, + [9496] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 7, + ACTIONS(3650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3648), 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, + [9557] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3654), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3652), 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, + [9618] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3576), 1, + anon_sym_COLON_COLON, + STATE(1177), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 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(3429), 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, + [9681] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3660), 1, + anon_sym_DASH_GT, + STATE(1178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3658), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3656), 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, + [9744] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119295,7 +121504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2758), 39, + ACTIONS(2984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119335,15 +121544,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8767] = 5, + [9805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2760), 7, + ACTIONS(2990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119351,7 +121560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2762), 39, + ACTIONS(2992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119391,15 +121600,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8828] = 5, + [9866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 7, + ACTIONS(3026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119407,7 +121616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2766), 39, + ACTIONS(3028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119447,15 +121656,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8889] = 5, + [9927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119463,7 +121672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2770), 39, + ACTIONS(1804), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119503,15 +121712,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8950] = 5, + [9988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2784), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119519,7 +121728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2786), 39, + ACTIONS(1896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119559,15 +121768,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9011] = 5, + [10049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119575,7 +121784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2790), 39, + ACTIONS(1904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119615,15 +121824,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9072] = 5, + [10110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119631,7 +121840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2794), 39, + ACTIONS(2028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119671,15 +121880,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9133] = 5, + [10171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2796), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119687,7 +121896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2798), 39, + ACTIONS(2032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119727,15 +121936,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9194] = 5, + [10232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 7, + ACTIONS(2258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119743,7 +121952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2802), 39, + ACTIONS(2260), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119783,15 +121992,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9255] = 5, + [10293] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 7, + ACTIONS(2262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119799,7 +122008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2810), 39, + ACTIONS(2264), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119839,15 +122048,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9316] = 5, + [10354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119855,7 +122064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2814), 39, + ACTIONS(2268), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119895,15 +122104,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9377] = 5, + [10415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 7, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119911,7 +122120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2826), 39, + ACTIONS(2272), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119951,15 +122160,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9438] = 5, + [10476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119967,7 +122176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 39, + ACTIONS(2276), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120007,15 +122216,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9499] = 5, + [10537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 7, + ACTIONS(2278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120023,7 +122232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2834), 39, + ACTIONS(2280), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120063,15 +122272,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9560] = 5, + [10598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 7, + ACTIONS(2282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120079,7 +122288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2838), 39, + ACTIONS(2284), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120119,15 +122328,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9621] = 5, + [10659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120135,7 +122344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2842), 39, + ACTIONS(2292), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120175,15 +122384,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9682] = 5, + [10720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2844), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120191,7 +122400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2846), 39, + ACTIONS(2296), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120231,15 +122440,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9743] = 5, + [10781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2848), 7, + ACTIONS(2302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120247,7 +122456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2850), 39, + ACTIONS(2304), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120287,15 +122496,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9804] = 5, + [10842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2852), 7, + ACTIONS(2310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120303,7 +122512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2854), 39, + ACTIONS(2312), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120343,15 +122552,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9865] = 5, + [10903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120359,7 +122568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2858), 39, + ACTIONS(2316), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120399,15 +122608,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9926] = 5, + [10964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120415,7 +122624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2862), 39, + ACTIONS(2320), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120455,15 +122664,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9987] = 5, + [11025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2864), 7, + ACTIONS(2322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120471,7 +122680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2866), 39, + ACTIONS(2324), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120511,15 +122720,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10048] = 5, + [11086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120527,7 +122736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2870), 39, + ACTIONS(2328), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120567,15 +122776,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10109] = 5, + [11147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 7, + ACTIONS(2330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120583,7 +122792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2874), 39, + ACTIONS(2332), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120623,15 +122832,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10170] = 5, + [11208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2876), 7, + ACTIONS(2334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120639,7 +122848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2878), 39, + ACTIONS(2336), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120679,15 +122888,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10231] = 5, + [11269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 7, + ACTIONS(2338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120695,7 +122904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2882), 39, + ACTIONS(2340), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120735,15 +122944,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10292] = 5, + [11330] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 7, + ACTIONS(2342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120751,7 +122960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2890), 39, + ACTIONS(2344), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120791,15 +123000,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10353] = 5, + [11391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 7, + ACTIONS(2350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120807,7 +123016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2894), 39, + ACTIONS(2352), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120847,15 +123056,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10414] = 5, + [11452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 7, + ACTIONS(2354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120863,7 +123072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2898), 39, + ACTIONS(2356), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120903,15 +123112,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10475] = 5, + [11513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 7, + ACTIONS(2358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120919,7 +123128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2902), 39, + ACTIONS(2360), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120959,15 +123168,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10536] = 5, + [11574] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 7, + ACTIONS(2362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120975,7 +123184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2906), 39, + ACTIONS(2364), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121015,15 +123224,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10597] = 5, + [11635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2912), 7, + ACTIONS(2366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121031,7 +123240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2914), 39, + ACTIONS(2368), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121071,15 +123280,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10658] = 5, + [11696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 7, + ACTIONS(2370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121087,7 +123296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2922), 39, + ACTIONS(2372), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121127,15 +123336,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10719] = 5, + [11757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 7, + ACTIONS(2374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121143,7 +123352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2926), 39, + ACTIONS(2376), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121183,15 +123392,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10780] = 5, + [11818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2928), 7, + ACTIONS(2378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121199,7 +123408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2930), 39, + ACTIONS(2380), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121239,15 +123448,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10841] = 5, + [11879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2932), 7, + ACTIONS(3034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121255,7 +123464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2934), 39, + ACTIONS(3036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121295,15 +123504,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10902] = 5, + [11940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2936), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121311,7 +123520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2938), 39, + ACTIONS(2478), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121351,15 +123560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10963] = 5, + [12001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2940), 7, + ACTIONS(2480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121367,7 +123576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2942), 39, + ACTIONS(2482), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121407,15 +123616,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11024] = 5, + [12062] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2944), 7, + ACTIONS(2484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121423,7 +123632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2946), 39, + ACTIONS(2486), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121463,15 +123672,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11085] = 5, + [12123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2948), 7, + ACTIONS(2488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121479,7 +123688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2950), 39, + ACTIONS(2490), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121519,15 +123728,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11146] = 5, + [12184] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2984), 7, + ACTIONS(2492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121535,7 +123744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2986), 39, + ACTIONS(2494), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121575,15 +123784,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11207] = 5, + [12245] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2992), 7, + ACTIONS(2496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121591,7 +123800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2994), 39, + ACTIONS(2498), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121631,127 +123840,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11268] = 5, + [12306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 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(3524), 31, + ACTIONS(2500), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11329] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1192), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3528), 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, - [11390] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2502), 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, + [12367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121759,7 +123912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 39, + ACTIONS(2506), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121799,15 +123952,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11451] = 5, + [12428] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 7, + ACTIONS(2508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121815,7 +123968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2426), 39, + ACTIONS(2510), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121855,15 +124008,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11512] = 5, + [12489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2428), 7, + ACTIONS(2512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121871,7 +124024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2430), 39, + ACTIONS(2514), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121911,15 +124064,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11573] = 5, + [12550] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 7, + ACTIONS(2516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121927,7 +124080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2656), 39, + ACTIONS(2518), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121967,15 +124120,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11634] = 5, + [12611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2964), 7, + ACTIONS(2520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121983,7 +124136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2966), 39, + ACTIONS(2522), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122023,15 +124176,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11695] = 5, + [12672] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122039,7 +124192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(2598), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122079,15 +124232,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11756] = 5, + [12733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122095,7 +124248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2608), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122135,127 +124288,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11817] = 5, + [12794] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(3664), 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(3662), 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(1872), 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, - [11878] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + 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_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(1876), 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, - [11939] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122263,7 +124416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2648), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122303,15 +124456,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12000] = 5, + [12977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122319,7 +124472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(2656), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122359,15 +124512,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12061] = 5, + [13038] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122375,7 +124528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2660), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122415,15 +124568,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12122] = 5, + [13099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(2662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122431,7 +124584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(2664), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122471,15 +124624,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12183] = 5, + [13160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(2676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122487,7 +124640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(2678), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122527,15 +124680,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12244] = 5, + [13221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(2686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122543,7 +124696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(2688), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122583,15 +124736,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12305] = 5, + [13282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122599,7 +124752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(2692), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122639,15 +124792,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12366] = 5, + [13343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(2694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122655,7 +124808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(2696), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122695,15 +124848,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12427] = 5, + [13404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(2710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122711,7 +124864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(2712), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122751,15 +124904,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12488] = 5, + [13465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(2714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122767,7 +124920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(2716), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122807,15 +124960,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12549] = 5, + [13526] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122823,7 +124976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(2720), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122863,15 +125016,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12610] = 5, + [13587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(2724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122879,7 +125032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 39, + ACTIONS(2726), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122919,15 +125072,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12671] = 5, + [13648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122935,7 +125088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 39, + ACTIONS(2732), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122975,15 +125128,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12732] = 5, + [13709] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122991,7 +125144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(2736), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123031,15 +125184,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12793] = 5, + [13770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123047,7 +125200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(2740), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123087,15 +125240,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12854] = 5, + [13831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123103,7 +125256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 39, + ACTIONS(2744), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123143,15 +125296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12915] = 5, + [13892] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(2746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123159,7 +125312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 39, + ACTIONS(2748), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123199,15 +125352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12976] = 5, + [13953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(2750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123215,7 +125368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2260), 39, + ACTIONS(2752), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123255,15 +125408,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13037] = 5, + [14014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123271,7 +125424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 39, + ACTIONS(2760), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123311,15 +125464,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13098] = 5, + [14075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(2762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123327,7 +125480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2268), 39, + ACTIONS(2764), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123367,15 +125520,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13159] = 5, + [14136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(2774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123383,7 +125536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 39, + ACTIONS(2776), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123423,15 +125576,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13220] = 5, + [14197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123439,7 +125592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 39, + ACTIONS(2792), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123479,15 +125632,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13281] = 5, + [14258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123495,7 +125648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 39, + ACTIONS(2796), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123535,15 +125688,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13342] = 5, + [14319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123551,7 +125704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 39, + ACTIONS(2800), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123591,15 +125744,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13403] = 5, + [14380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123607,7 +125760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 39, + ACTIONS(2804), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123647,15 +125800,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13464] = 5, + [14441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123663,7 +125816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 39, + ACTIONS(2808), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123703,15 +125856,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13525] = 5, + [14502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123719,7 +125872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 39, + ACTIONS(2812), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123759,15 +125912,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13586] = 5, + [14563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + ACTIONS(3670), 1, + anon_sym_LBRACE, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 7, + ACTIONS(3421), 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(3423), 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, + [14626] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123775,7 +125985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2306), 39, + ACTIONS(2832), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123815,15 +126025,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13647] = 5, + [14687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 7, + ACTIONS(2842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123831,7 +126041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2310), 39, + ACTIONS(2844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123871,15 +126081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13708] = 5, + [14748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 7, + ACTIONS(2846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123887,7 +126097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2314), 39, + ACTIONS(2848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123927,15 +126137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13769] = 5, + [14809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 7, + ACTIONS(2850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123943,7 +126153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2318), 39, + ACTIONS(2852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123983,15 +126193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13830] = 5, + [14870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 7, + ACTIONS(2854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123999,7 +126209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2342), 39, + ACTIONS(2856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124039,15 +126249,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13891] = 5, + [14931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 7, + ACTIONS(2858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124055,7 +126265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2346), 39, + ACTIONS(2860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124095,15 +126305,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13952] = 5, + [14992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 7, + ACTIONS(2882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124111,7 +126321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2350), 39, + ACTIONS(2884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124151,15 +126361,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14013] = 5, + [15053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 7, + ACTIONS(2886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124167,7 +126377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2358), 39, + ACTIONS(2888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124207,15 +126417,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14074] = 5, + [15114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124223,7 +126433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 39, + ACTIONS(2916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124263,15 +126473,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14135] = 5, + [15175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124279,7 +126489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 39, + ACTIONS(2924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124319,15 +126529,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14196] = 5, + [15236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2416), 7, + ACTIONS(2930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124335,7 +126545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2418), 39, + ACTIONS(2932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124375,127 +126585,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14257] = 5, + [15297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 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), 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, - [14318] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1241), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 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(3536), 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, - [14379] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124503,7 +126601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2454), 39, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124543,15 +126641,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14440] = 5, + [15358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2456), 7, + ACTIONS(2942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124559,7 +126657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2458), 39, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124599,15 +126697,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14501] = 5, + [15419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124615,7 +126713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 39, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124655,15 +126753,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14562] = 5, + [15480] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124671,7 +126769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 39, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124711,15 +126809,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14623] = 5, + [15541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2560), 7, + ACTIONS(2954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124727,7 +126825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2562), 39, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124767,15 +126865,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14684] = 5, + [15602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2602), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124783,7 +126881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2604), 39, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124823,15 +126921,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14745] = 5, + [15663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2606), 7, + ACTIONS(2962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124839,7 +126937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2608), 39, + ACTIONS(2964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124879,15 +126977,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14806] = 5, + [15724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2638), 7, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124895,7 +126993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2640), 39, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124935,15 +127033,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14867] = 5, + [15785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(2970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124951,7 +127049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2644), 39, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124991,15 +127089,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14928] = 5, + [15846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2646), 7, + ACTIONS(2974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125007,7 +127105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2648), 39, + ACTIONS(2976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125047,15 +127145,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14989] = 5, + [15907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2662), 7, + ACTIONS(3006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125063,7 +127161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2664), 39, + ACTIONS(3008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125103,15 +127201,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15050] = 5, + [15968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 7, + ACTIONS(3014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125119,7 +127217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2682), 39, + ACTIONS(3016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125159,15 +127257,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15111] = 5, + [16029] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 7, + ACTIONS(3674), 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(3672), 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, + [16090] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1283), 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), 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, + [16151] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1284), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125175,7 +127385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2686), 39, + ACTIONS(1808), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125215,15 +127425,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15172] = 5, + [16212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 7, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125231,7 +127441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2690), 39, + ACTIONS(1812), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125271,15 +127481,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15233] = 5, + [16273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125287,7 +127497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2694), 39, + ACTIONS(1820), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125327,15 +127537,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15294] = 5, + [16334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125343,7 +127553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2706), 39, + ACTIONS(1824), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125383,15 +127593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15355] = 5, + [16395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125399,7 +127609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2714), 39, + ACTIONS(1828), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125439,15 +127649,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15416] = 5, + [16456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125455,7 +127665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2722), 39, + ACTIONS(1832), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125495,15 +127705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15477] = 5, + [16517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 7, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125511,7 +127721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2750), 39, + ACTIONS(1836), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125551,15 +127761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15538] = 5, + [16578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125567,7 +127777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2774), 39, + ACTIONS(1840), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125607,15 +127817,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15599] = 5, + [16639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2776), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125623,7 +127833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2778), 39, + ACTIONS(1844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125663,15 +127873,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15660] = 5, + [16700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125679,7 +127889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2782), 39, + ACTIONS(1848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125719,15 +127929,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15721] = 5, + [16761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125735,7 +127945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2806), 39, + ACTIONS(1852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125775,15 +127985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15782] = 5, + [16822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125791,7 +128001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2818), 39, + ACTIONS(1856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125831,15 +128041,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15843] = 5, + [16883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125847,7 +128057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2822), 39, + ACTIONS(1860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125887,15 +128097,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15904] = 5, + [16944] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125903,7 +128113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2886), 39, + ACTIONS(1864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125943,15 +128153,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15965] = 5, + [17005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125959,7 +128169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2910), 39, + ACTIONS(1868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125999,15 +128209,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16026] = 5, + [17066] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126015,7 +128225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2918), 39, + ACTIONS(1872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126055,15 +128265,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16087] = 5, + [17127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2952), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126071,7 +128281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2954), 39, + ACTIONS(1876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126111,15 +128321,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16148] = 5, + [17188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2968), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126127,7 +128337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2970), 39, + ACTIONS(1880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126167,15 +128377,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16209] = 5, + [17249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2972), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126183,7 +128393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2974), 39, + ACTIONS(1884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126223,15 +128433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16270] = 5, + [17310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2976), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126239,7 +128449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2978), 39, + ACTIONS(1888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126279,15 +128489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16331] = 5, + [17371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2980), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126295,7 +128505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2982), 39, + ACTIONS(1892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126335,15 +128545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16392] = 5, + [17432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2988), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126351,7 +128561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2990), 39, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126391,15 +128601,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16453] = 5, + [17493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2996), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126407,7 +128617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2998), 39, + ACTIONS(1908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126447,15 +128657,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16514] = 5, + [17554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126463,7 +128673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2528), 39, + ACTIONS(1916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126503,15 +128713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16575] = 5, + [17615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126519,7 +128729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1804), 39, + ACTIONS(1920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126559,15 +128769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16636] = 5, + [17676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126575,7 +128785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1808), 39, + ACTIONS(1924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126615,15 +128825,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16697] = 5, + [17737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126631,7 +128841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1812), 39, + ACTIONS(1928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126671,15 +128881,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16758] = 5, + [17798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126687,7 +128897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(1932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126727,15 +128937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16819] = 5, + [17859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126743,7 +128953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 39, + ACTIONS(1936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126783,15 +128993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16880] = 5, + [17920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126799,7 +129009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(1940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126839,15 +129049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16941] = 5, + [17981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126855,7 +129065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(1944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126895,15 +129105,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17002] = 5, + [18042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126911,7 +129121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(1948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126951,15 +129161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17063] = 5, + [18103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126967,7 +129177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1836), 39, + ACTIONS(1952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127007,15 +129217,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17124] = 5, + [18164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127023,7 +129233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(1956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127063,15 +129273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17185] = 5, + [18225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127079,7 +129289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(1960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127119,15 +129329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17246] = 5, + [18286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127135,7 +129345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(1964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127175,15 +129385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17307] = 5, + [18347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127191,7 +129401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(1968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127231,15 +129441,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17368] = 5, + [18408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127247,7 +129457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(1972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127287,15 +129497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17429] = 5, + [18469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127303,7 +129513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(1976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127343,29 +129553,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17490] = 5, + [18530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 13, + ACTIONS(1978), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3540), 33, + ACTIONS(1980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127386,287 +129590,42 @@ 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17551] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3276), 1, - anon_sym_if, - ACTIONS(3544), 1, sym_identifier, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, - sym_metavariable, - STATE(2714), 1, - sym_scoped_identifier, - STATE(2903), 1, - sym__literal_pattern, - STATE(3549), 1, - sym_bracketed_type, - STATE(3562), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3274), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1294), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3550), 3, sym_self, sym_super, sym_crate, - STATE(2341), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3546), 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, - [17644] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3554), 1, - anon_sym_COLON_COLON, - STATE(1295), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3367), 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(3365), 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, - [17707] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - STATE(1296), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3367), 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(3365), 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, - [17770] = 6, + [18591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - STATE(1297), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(3367), 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(3365), 30, + ACTIONS(1982), 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, - [17833] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1298), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2328), 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(2330), 31, + ACTIONS(1984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127684,43 +129643,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [17894] = 5, + [18652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 13, + ACTIONS(1986), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3558), 33, + ACTIONS(1988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127741,85 +129702,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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17955] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3562), 1, - anon_sym_LBRACE, - STATE(1300), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3373), 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(3375), 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, - [18018] = 5, + [18713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127827,7 +129737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(1992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127867,15 +129777,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18079] = 5, + [18774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127883,7 +129793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 39, + ACTIONS(1996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127915,142 +129825,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [18140] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3445), 1, - anon_sym_BANG, - ACTIONS(3564), 1, - anon_sym_move, - STATE(418), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(1303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3322), 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(3320), 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, - [18215] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1304), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1583), 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(1585), 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, - [18276] = 5, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(3000), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128058,7 +129849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3002), 39, + ACTIONS(2000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128098,31 +129889,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18337] = 5, + [18896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(3568), 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(2002), 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(3566), 31, + ACTIONS(2004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128140,72 +129923,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [18398] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [18957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3300), 1, - anon_sym_if, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - ACTIONS(3570), 1, - sym_identifier, - ACTIONS(3576), 1, - sym_metavariable, - STATE(2675), 1, - sym_scoped_identifier, - STATE(3031), 1, - sym__literal_pattern, - STATE(3549), 1, - sym_bracketed_type, - STATE(3562), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3298), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1307), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3574), 3, - sym_self, - sym_super, - sym_crate, - STATE(2341), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3572), 20, + ACTIONS(2006), 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(2008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128223,117 +129979,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [18491] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(3580), 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(3578), 31, + ACTIONS(2010), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18552] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3288), 1, - anon_sym_if, - ACTIONS(3548), 1, anon_sym_COLON_COLON, - ACTIONS(3582), 1, - sym_identifier, - ACTIONS(3588), 1, + anon_sym_POUND, sym_metavariable, - STATE(2550), 1, - sym_scoped_identifier, - STATE(3058), 1, - sym__literal_pattern, - STATE(3549), 1, - sym_bracketed_type, - STATE(3562), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3286), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1309), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3586), 3, - sym_self, - sym_super, - sym_crate, - STATE(2341), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3584), 20, + ACTIONS(2012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128351,146 +130035,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [18645] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1310), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3592), 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(3590), 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, - [18706] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1332), 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, + ACTIONS(2014), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18767] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1312), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3600), 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(3598), 31, + ACTIONS(2016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128508,45 +130091,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [18828] = 5, + [19140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(3000), 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(2018), 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(3002), 31, + ACTIONS(2020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128564,146 +130147,93 @@ 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, - [18889] = 5, + [19201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3268), 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(3270), 31, + ACTIONS(2022), 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_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, - [18950] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_DASH_GT, - STATE(1315), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3604), 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(3602), 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, - [19013] = 7, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2024), 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, + [19262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3610), 1, - anon_sym_LPAREN, - STATE(1382), 1, - sym_arguments, - STATE(1316), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3612), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128719,8 +130249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3608), 29, + ACTIONS(3680), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -128746,20 +130277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19078] = 6, + [19323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - STATE(1317), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 15, + ACTIONS(3686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128775,7 +130305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3385), 30, + ACTIONS(3684), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128803,189 +130333,187 @@ 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, - [19141] = 6, + [19384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - STATE(1318), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(3399), 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(3397), 30, + ACTIONS(2034), 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, - [19204] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2036), 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, + [19445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3618), 1, - anon_sym_DASH_GT, - STATE(1319), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(3616), 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(3614), 30, + ACTIONS(2038), 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, - [19267] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2040), 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, + [19506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3624), 1, - anon_sym_DASH_GT, - STATE(1320), 2, + STATE(1339), 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), 30, + ACTIONS(2042), 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, - [19330] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2044), 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, + [19567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128993,7 +130521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(2048), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129033,130 +130561,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19391] = 6, + [19628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, - anon_sym_LBRACE, - STATE(1322), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3393), 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(3395), 29, + ACTIONS(2050), 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, - [19454] = 7, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2052), 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, + [19689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3628), 1, - anon_sym_else, - STATE(1488), 1, - sym_else_clause, - STATE(1323), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(1331), 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(1329), 29, + ACTIONS(2054), 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, - [19519] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2056), 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, + [19750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, + ACTIONS(2058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129164,7 +130689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2322), 39, + ACTIONS(2060), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129204,15 +130729,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19580] = 5, + [19811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 7, + ACTIONS(2062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129220,7 +130745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2326), 39, + ACTIONS(2064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129260,15 +130785,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19641] = 5, + [19872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129276,7 +130801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2338), 39, + ACTIONS(2068), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129316,15 +130841,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19702] = 5, + [19933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 7, + ACTIONS(2070), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129332,7 +130857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3630), 39, + ACTIONS(2072), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129372,15 +130897,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19763] = 5, + [19994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129388,7 +130913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2438), 39, + ACTIONS(2076), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129428,15 +130953,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19824] = 5, + [20055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 7, + ACTIONS(2082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129444,7 +130969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2450), 39, + ACTIONS(2084), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129484,15 +131009,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19885] = 5, + [20116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2464), 7, + ACTIONS(2086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129500,7 +131025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2466), 39, + ACTIONS(2088), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129540,72 +131065,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19946] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3634), 1, - anon_sym_LBRACE, - STATE(1331), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3361), 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(3363), 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, - [20009] = 5, + [20177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2564), 7, + ACTIONS(2090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129613,7 +131081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2566), 39, + ACTIONS(2092), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129653,15 +131121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20070] = 5, + [20238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 7, + ACTIONS(2094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129669,7 +131137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2628), 39, + ACTIONS(2096), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129709,15 +131177,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20131] = 5, + [20299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2630), 7, + ACTIONS(2098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129725,7 +131193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2632), 39, + ACTIONS(2100), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129765,15 +131233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20192] = 5, + [20360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2634), 7, + ACTIONS(2102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129781,7 +131249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2636), 39, + ACTIONS(2104), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129821,78 +131289,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20253] = 12, + [20421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3324), 1, - anon_sym_BANG, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3636), 1, - anon_sym_move, - STATE(474), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(1336), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3322), 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(3320), 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, - [20328] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2650), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129900,7 +131305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2652), 39, + ACTIONS(2108), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129940,15 +131345,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20389] = 5, + [20482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2666), 7, + ACTIONS(2110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129956,7 +131361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2668), 39, + ACTIONS(2112), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129996,15 +131401,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20450] = 5, + [20543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130012,7 +131417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2698), 39, + ACTIONS(2116), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130052,15 +131457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20511] = 5, + [20604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130068,7 +131473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2702), 39, + ACTIONS(2120), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130108,29 +131513,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20572] = 5, + [20665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 13, + ACTIONS(2122), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3638), 33, + ACTIONS(2124), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130151,197 +131550,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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [20633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1342), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3644), 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(3642), 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, - [20694] = 5, + [20726] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3648), 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(3646), 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, - [20755] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3650), 1, - anon_sym_COLON_COLON, - STATE(1344), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1479), 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(1477), 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, - [20818] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2956), 7, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130349,7 +131585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2958), 39, + ACTIONS(2128), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130389,73 +131625,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20879] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1405), 1, - sym_label, - STATE(1346), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3654), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3652), 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, - [20944] = 5, + [20787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2960), 7, + ACTIONS(2130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130463,7 +131641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2962), 39, + ACTIONS(2132), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130503,141 +131681,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21005] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1348), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3391), 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(3389), 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, - [21066] = 5, + [20848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3656), 31, + ACTIONS(2134), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21127] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1350), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3662), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3660), 33, + ACTIONS(2136), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130658,256 +131718,146 @@ 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21188] = 6, + [20909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3668), 1, - anon_sym_DASH_GT, - STATE(1351), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 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(3664), 30, + ACTIONS(2138), 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, - [21251] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3674), 1, - anon_sym_DASH_GT, - STATE(1352), 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, - [21314] = 6, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2140), 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, + [20970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3680), 1, - anon_sym_DASH_GT, - STATE(1353), 2, + STATE(1363), 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, + ACTIONS(2142), 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, - [21377] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3682), 1, - anon_sym_LBRACE, - STATE(1354), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3381), 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(3383), 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, - [21440] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2144), 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, + [21031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130915,7 +131865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2148), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130955,15 +131905,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21501] = 5, + [21092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130971,7 +131921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2152), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131011,15 +131961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21562] = 5, + [21153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131027,7 +131977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2156), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131067,15 +132017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21623] = 5, + [21214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131083,7 +132033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2160), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131123,15 +132073,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21684] = 5, + [21275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131139,7 +132089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2164), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131179,239 +132129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21745] = 5, + [21336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1910), 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(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, - [21806] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1361), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1914), 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(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, - [21867] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1362), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1918), 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(1920), 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, - [21928] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1363), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1922), 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(1924), 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, - [21989] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131419,7 +132145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(2168), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131459,15 +132185,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22050] = 5, + [21397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131475,7 +132201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2172), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131515,15 +132241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22111] = 5, + [21458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(2174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131531,7 +132257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(2176), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131571,15 +132297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22172] = 5, + [21519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131587,7 +132313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(2180), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131627,15 +132353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22233] = 5, + [21580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131643,7 +132369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(2184), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131683,15 +132409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22294] = 5, + [21641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(2186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131699,7 +132425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 39, + ACTIONS(2188), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131739,15 +132465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22355] = 5, + [21702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(2190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131755,7 +132481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(2192), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131795,15 +132521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22416] = 5, + [21763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(2194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131811,7 +132537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(2196), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131851,15 +132577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22477] = 5, + [21824] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(2198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131867,7 +132593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 39, + ACTIONS(2200), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131907,15 +132633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22538] = 5, + [21885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131923,7 +132649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(2204), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131963,15 +132689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22599] = 5, + [21946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131979,7 +132705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(2208), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132019,15 +132745,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22660] = 5, + [22007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132035,7 +132761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(2212), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132075,15 +132801,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22721] = 5, + [22068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(2214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132091,7 +132817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(2216), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132131,15 +132857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22782] = 5, + [22129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(2218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132147,7 +132873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(2220), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132187,15 +132913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22843] = 5, + [22190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132203,7 +132929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 39, + ACTIONS(2224), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132243,28 +132969,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22904] = 5, + [22251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(3000), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2226), 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(3002), 33, + ACTIONS(2228), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132285,295 +133006,26 @@ 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, - [22964] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1380), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1523), 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(1521), 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, - [23024] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1381), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3686), 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(3684), 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, - [23084] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1382), 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, - anon_sym_AMP, - anon_sym_PIPE, - anon_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), 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, - [23144] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1383), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1527), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1525), 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, - [23204] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1384), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(919), 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(921), 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, - [23264] = 5, + [22312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -132581,391 +133033,239 @@ static const uint16_t ts_small_parse_table[] = { STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3692), 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, - [23324] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1386), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3698), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3696), 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, - [23384] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1387), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3702), 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(3700), 30, + ACTIONS(2230), 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, - [23444] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1388), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1443), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1441), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23504] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2232), 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, + [22373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1445), 30, + ACTIONS(2234), 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, - [23564] = 12, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2236), 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, + [22434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3704), 1, - anon_sym_BANG, - ACTIONS(3706), 1, - anon_sym_COLON_COLON, - ACTIONS(3708), 1, - anon_sym_move, - STATE(1695), 1, - sym_block, - STATE(3673), 1, - sym_label, - STATE(1390), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 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(3320), 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, - [23638] = 23, - ACTIONS(29), 1, + ACTIONS(2238), 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(2240), 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, + [22495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - sym_identifier, - ACTIONS(3405), 1, - anon_sym_LPAREN, - ACTIONS(3407), 1, - anon_sym_STAR, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3413), 1, - anon_sym_COLON_COLON, - ACTIONS(3415), 1, - anon_sym_SQUOTE, - ACTIONS(3419), 1, - anon_sym_for, - ACTIONS(3423), 1, - sym_metavariable, - STATE(2494), 1, - sym_where_predicate, - STATE(2624), 1, - sym_scoped_type_identifier, - STATE(2948), 1, - sym_generic_type, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - STATE(1391), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 3, + ACTIONS(2242), 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(2244), 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, - ACTIONS(3421), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(3139), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3409), 17, + [22556] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1389), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2246), 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(2248), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132983,125 +133283,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [23734] = 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, + [22617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(3712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3710), 30, + ACTIONS(2250), 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, - [23794] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2252), 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, + [22678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1391), 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, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1449), 30, + ACTIONS(2254), 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, - [23854] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2256), 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, + [22739] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1409), 1, + sym_label, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133117,7 +133445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3714), 30, + ACTIONS(3688), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133145,296 +133473,357 @@ 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, - [23914] = 5, + [22804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2982), 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(3718), 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, - [23974] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2984), 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, + [22865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3722), 30, + ACTIONS(3694), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24034] = 5, + sym_metavariable, + ACTIONS(3692), 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_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3698), 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(3726), 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, - [24094] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3696), 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, + [22987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3702), 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_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3700), 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, - ACTIONS(3730), 30, + 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, + [23048] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2782), 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, - [24154] = 8, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2784), 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, + [23109] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - STATE(1399), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3738), 14, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2782), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3734), 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, - [24220] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2784), 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, + [23170] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + ACTIONS(3706), 1, + anon_sym_LPAREN, + STATE(1511), 1, + sym_arguments, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133450,9 +133839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3744), 30, + ACTIONS(3704), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -133481,15 +133869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24280] = 5, + [23235] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + ACTIONS(1301), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_BANG, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3710), 1, + anon_sym_move, + STATE(485), 1, + sym_block, + STATE(3717), 1, + sym_label, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3750), 15, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133505,13 +133907,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3748), 30, - anon_sym_SEMI, + ACTIONS(3340), 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, @@ -133533,18 +133931,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, - [24340] = 5, + [23310] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + ACTIONS(3712), 1, + anon_sym_COLON_COLON, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133560,7 +133958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 30, + ACTIONS(1431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133591,7 +133989,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24400] = 5, + [23373] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1402), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3716), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3714), 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_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133599,7 +134053,67 @@ static const uint16_t ts_small_parse_table[] = { STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 15, + ACTIONS(2814), 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(2816), 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, + [23495] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3358), 1, + anon_sym_BANG, + ACTIONS(3718), 1, + anon_sym_COLON_COLON, + STATE(1404), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133615,13 +134129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1383), 30, + ACTIONS(1431), 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, @@ -133643,18 +134156,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, - [24460] = 5, + [23559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3758), 15, + ACTIONS(3722), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133670,7 +134182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3756), 30, + ACTIONS(3720), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133701,15 +134213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24520] = 5, + [23619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133725,7 +134237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 30, + ACTIONS(3724), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133756,15 +134268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24580] = 5, + [23679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(3730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133780,7 +134292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3728), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133811,15 +134323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24640] = 5, + [23739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133835,7 +134347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 30, + ACTIONS(3732), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133866,15 +134378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24700] = 5, + [23799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(3738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133890,7 +134402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 30, + ACTIONS(3736), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133921,15 +134433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24760] = 5, + [23859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133945,7 +134457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133976,15 +134488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24820] = 5, + [23919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134000,7 +134512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3768), 30, + ACTIONS(3740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134031,15 +134543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24880] = 5, + [23979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3774), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134055,7 +134567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3772), 30, + ACTIONS(3740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134086,15 +134598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24940] = 5, + [24039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134110,7 +134622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3776), 30, + ACTIONS(3744), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134141,15 +134653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25000] = 5, + [24099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134165,7 +134677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 30, + ACTIONS(3748), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134196,21 +134708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25060] = 8, + [24159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - STATE(1414), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 14, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134224,14 +134730,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(3784), 28, + ACTIONS(1047), 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, @@ -134254,15 +134763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25126] = 5, + [24219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134278,7 +134787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3752), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134309,15 +134818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25186] = 5, + [24279] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + ACTIONS(3758), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134333,13 +134845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 30, + ACTIONS(3756), 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, @@ -134361,18 +134872,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, - [25246] = 5, + [24341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134388,7 +134898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 30, + ACTIONS(1417), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134419,15 +134929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25306] = 5, + [24401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3794), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134443,7 +134953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3792), 30, + ACTIONS(3756), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134474,15 +134984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25366] = 5, + [24461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 15, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134498,7 +135008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3796), 30, + ACTIONS(3762), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134529,15 +135039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25426] = 5, + [24521] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134553,7 +135063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3800), 30, + ACTIONS(3766), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134584,15 +135094,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25486] = 5, + [24581] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, + ACTIONS(3774), 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(3770), 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, + [24647] = 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(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134608,7 +135176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3804), 30, + ACTIONS(1497), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134639,15 +135207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25546] = 5, + [24707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 15, + ACTIONS(1385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134663,7 +135231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3385), 30, + ACTIONS(1383), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134694,15 +135262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25606] = 5, + [24767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134718,7 +135286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3808), 30, + ACTIONS(3780), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134749,15 +135317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25666] = 5, + [24827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(3786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134773,7 +135341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3812), 30, + ACTIONS(3784), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134804,15 +135372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25726] = 5, + [24887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3399), 15, + ACTIONS(3790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134828,7 +135396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3397), 30, + ACTIONS(3788), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134859,15 +135427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25786] = 5, + [24947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(3794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134883,7 +135451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3816), 30, + ACTIONS(3792), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134914,15 +135482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25846] = 5, + [25007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 15, + ACTIONS(3798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134938,7 +135506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1015), 30, + ACTIONS(3796), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134969,15 +135537,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25906] = 5, + [25067] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3802), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134991,17 +135565,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(3820), 30, + ACTIONS(3800), 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, @@ -135024,15 +135595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25966] = 5, + [25133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135048,7 +135619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3804), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135079,15 +135650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26026] = 5, + [25193] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135103,7 +135674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3824), 30, + ACTIONS(3808), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135134,15 +135705,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26086] = 5, + [25253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(3292), 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(3290), 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_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25313] = 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(1397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135158,7 +135784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, + ACTIONS(1395), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135189,15 +135815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26146] = 5, + [25373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135213,7 +135839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 30, + ACTIONS(3812), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135244,15 +135870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26206] = 5, + [25433] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(3818), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135266,17 +135898,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(1465), 30, + ACTIONS(3816), 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, @@ -135299,15 +135928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26266] = 5, + [25499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 15, + ACTIONS(3822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135323,7 +135952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1417), 30, + ACTIONS(3820), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135354,15 +135983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26326] = 5, + [25559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3830), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135378,7 +136007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3828), 30, + ACTIONS(1461), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135409,15 +136038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26386] = 5, + [25619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135433,7 +136062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3425), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135464,15 +136093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26446] = 5, + [25679] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + ACTIONS(3344), 1, + anon_sym_BANG, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(929), 15, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135488,13 +136121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(931), 30, + ACTIONS(3340), 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, @@ -135516,18 +136148,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, - [26506] = 5, + [25743] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 15, + ACTIONS(3826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135543,7 +136174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3832), 30, + ACTIONS(3824), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135574,15 +136205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26566] = 5, + [25803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3612), 15, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135598,7 +136229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3608), 30, + ACTIONS(3828), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135629,15 +136260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26626] = 5, + [25863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135653,7 +136284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 30, + ACTIONS(3832), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135684,15 +136315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26686] = 5, + [25923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(1389), 15, + ACTIONS(3431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135708,7 +136339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1387), 30, + ACTIONS(3429), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135739,18 +136370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26746] = 6, + [25983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3842), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1442), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(1479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135766,12 +136394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 28, + ACTIONS(1477), 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, @@ -135793,17 +136422,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, - [26808] = 5, + [26043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135819,7 +136449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 30, + ACTIONS(3836), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135850,15 +136480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26868] = 5, + [26103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135874,7 +136504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1043), 30, + ACTIONS(1481), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135905,15 +136535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26928] = 5, + [26163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135929,7 +136559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3846), 30, + ACTIONS(3840), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135960,88 +136590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26988] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [26223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - sym_identifier, - ACTIONS(3405), 1, - anon_sym_LPAREN, - ACTIONS(3407), 1, - anon_sym_STAR, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3413), 1, - anon_sym_COLON_COLON, - ACTIONS(3415), 1, - anon_sym_SQUOTE, - ACTIONS(3419), 1, - anon_sym_for, - ACTIONS(3423), 1, - sym_metavariable, - STATE(2592), 1, - sym_where_predicate, - STATE(2624), 1, - sym_scoped_type_identifier, - STATE(2948), 1, - sym_generic_type, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - STATE(1446), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3417), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3421), 3, - sym_self, - sym_super, - sym_crate, - STATE(3139), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3409), 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, - [27084] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136057,7 +136614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, + ACTIONS(1493), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136088,15 +136645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27144] = 5, + [26283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136112,7 +136669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(1467), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136143,15 +136700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27204] = 5, + [26343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136167,7 +136724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 30, + ACTIONS(1051), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136198,15 +136755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27264] = 5, + [26403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 15, + ACTIONS(1531), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136222,7 +136779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3353), 30, + ACTIONS(1529), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136253,15 +136810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27324] = 5, + [26463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136277,7 +136834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, + ACTIONS(1513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136308,15 +136865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27384] = 5, + [26523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(1415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136332,7 +136889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 30, + ACTIONS(1413), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136363,15 +136920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27444] = 5, + [26583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136387,7 +136944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 30, + ACTIONS(1505), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136418,15 +136975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27504] = 5, + [26643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1411), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136442,7 +136999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1409), 30, + ACTIONS(1509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136473,15 +137030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27564] = 5, + [26703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136497,7 +137054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 30, + ACTIONS(3844), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136528,15 +137085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27624] = 5, + [26763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136552,7 +137109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 30, + ACTIONS(3848), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136583,15 +137140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27684] = 5, + [26823] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136607,7 +137164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 30, + ACTIONS(999), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136638,15 +137195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27744] = 5, + [26883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(3854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136662,7 +137219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1511), 30, + ACTIONS(3852), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136693,23 +137250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27804] = 9, + [26943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - STATE(1459), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 14, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136723,14 +137272,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(3870), 27, + ACTIONS(1517), 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, @@ -136751,16 +137303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [27872] = 5, + [27003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136776,7 +137329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3876), 30, + ACTIONS(1431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136807,15 +137360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27932] = 5, + [27063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(3858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136831,7 +137384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 30, + ACTIONS(3856), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136862,15 +137415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27992] = 5, + [27123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136886,7 +137439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3884), 30, + ACTIONS(3860), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136917,18 +137470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28052] = 6, + [27183] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3888), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1463), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(1523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136944,12 +137494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 28, + ACTIONS(1521), 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, @@ -136971,17 +137522,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, - [28114] = 5, + [27243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136997,7 +137549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 30, + ACTIONS(3864), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137028,15 +137580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28174] = 5, + [27303] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(985), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137052,7 +137604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(987), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137083,15 +137635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28234] = 5, + [27363] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137107,7 +137659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, + ACTIONS(3868), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137138,15 +137690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28294] = 5, + [27423] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137162,7 +137714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 30, + ACTIONS(3872), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137193,15 +137745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28354] = 5, + [27483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137217,7 +137769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, + ACTIONS(3449), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137248,15 +137800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28414] = 5, + [27543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137272,7 +137824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(3876), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137303,15 +137855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28474] = 5, + [27603] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137327,7 +137879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(3441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137358,15 +137910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28534] = 5, + [27663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(3882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137382,7 +137934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1403), 30, + ACTIONS(3880), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137413,15 +137965,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28594] = 5, + [27723] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3385), 1, + sym_identifier, + ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(3391), 1, + anon_sym_STAR, + ACTIONS(3395), 1, + anon_sym_AMP, + ACTIONS(3397), 1, + anon_sym_COLON_COLON, + ACTIONS(3399), 1, + anon_sym_SQUOTE, + ACTIONS(3403), 1, + anon_sym_for, + ACTIONS(3407), 1, + sym_metavariable, + STATE(2521), 1, + sym_where_predicate, + STATE(2773), 1, + sym_scoped_type_identifier, + STATE(3051), 1, + sym_generic_type, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(3401), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + STATE(3295), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3393), 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, + [27819] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137437,7 +138062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 30, + ACTIONS(3884), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137468,15 +138093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28654] = 5, + [27879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3916), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137492,7 +138117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3914), 30, + ACTIONS(1441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137523,19 +138148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28714] = 7, + [27939] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3314), 1, - anon_sym_BANG, - ACTIONS(3918), 1, - anon_sym_COLON_COLON, - STATE(1474), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137551,12 +138172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 28, + ACTIONS(1471), 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, @@ -137578,17 +138200,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, - [28778] = 5, + [27999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 15, + ACTIONS(1017), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137604,7 +138227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 30, + ACTIONS(1019), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137635,15 +138258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28838] = 5, + [28059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(1423), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137659,7 +138282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3924), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137690,19 +138313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28898] = 7, + [28119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3324), 1, - anon_sym_BANG, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - STATE(1477), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137718,12 +138337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3320), 28, + ACTIONS(3888), 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, @@ -137745,23 +138365,21 @@ 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, - [28962] = 8, + [28179] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - STATE(1478), 2, + ACTIONS(3892), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 14, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137775,14 +138393,16 @@ 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(3928), 28, + ACTIONS(3756), 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, @@ -137802,18 +138422,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, - [29028] = 5, + [28241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(1527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137829,7 +138448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3932), 30, + ACTIONS(1525), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137860,15 +138479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29088] = 5, + [28301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137884,7 +138503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3936), 30, + ACTIONS(1431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137915,15 +138534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29148] = 5, + [28361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137939,7 +138558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 30, + ACTIONS(995), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137970,70 +138589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29208] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1482), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3260), 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(3258), 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_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29268] = 5, + [28421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138049,7 +138613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 30, + ACTIONS(3894), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138080,15 +138644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29328] = 5, + [28481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138104,7 +138668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 30, + ACTIONS(3898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138135,15 +138699,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29388] = 5, + [28541] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3904), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138157,17 +138729,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(3944), 30, + ACTIONS(3902), 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, @@ -138188,17 +138757,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, - [29448] = 5, + [28609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138214,7 +138782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1399), 30, + ACTIONS(1433), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138245,15 +138813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29508] = 5, + [28669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(1389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138269,7 +138837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 30, + ACTIONS(1387), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138300,15 +138868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29568] = 5, + [28729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138324,7 +138892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138355,15 +138923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29628] = 5, + [28789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 15, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138379,7 +138947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3948), 30, + ACTIONS(1437), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138410,15 +138978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29688] = 5, + [28849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138434,7 +139002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3952), 30, + ACTIONS(3908), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138465,15 +139033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29748] = 5, + [28909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138489,7 +139057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3912), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138520,21 +139088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29808] = 8, + [28969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - STATE(1492), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 14, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138548,14 +139110,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(3956), 28, + ACTIONS(3916), 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, @@ -138578,15 +139143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29874] = 5, + [29029] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3962), 15, + ACTIONS(3922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138602,7 +139167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3960), 30, + ACTIONS(3920), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138633,15 +139198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29934] = 5, + [29089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3966), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138657,7 +139222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3964), 30, + ACTIONS(3924), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138688,15 +139253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29994] = 5, + [29149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3930), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138712,7 +139277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3928), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138743,15 +139308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30054] = 5, + [29209] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(3934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138767,7 +139332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3968), 30, + ACTIONS(3932), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138798,15 +139363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30114] = 5, + [29269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, + ACTIONS(3938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138822,7 +139387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(991), 30, + ACTIONS(3936), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138853,15 +139418,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30174] = 5, + [29329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1500), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2782), 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(2784), 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_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29389] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3367), 15, + ACTIONS(3942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138877,7 +139497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3365), 30, + ACTIONS(3940), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138908,15 +139528,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30234] = 5, + [29449] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3944), 1, + anon_sym_BANG, + ACTIONS(3946), 1, + anon_sym_COLON_COLON, + ACTIONS(3948), 1, + anon_sym_move, + STATE(1747), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3974), 15, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138932,14 +139566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3972), 30, - anon_sym_SEMI, + ACTIONS(3340), 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, @@ -138959,19 +139589,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, - [30294] = 5, + [29523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3978), 15, + ACTIONS(3952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138987,7 +139614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3976), 30, + ACTIONS(3950), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139018,15 +139645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30354] = 5, + [29583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3982), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139042,7 +139669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3980), 30, + ACTIONS(1431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139073,15 +139700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30414] = 5, + [29643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(1003), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139097,7 +139724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3984), 30, + ACTIONS(1005), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139128,15 +139755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30474] = 5, + [29703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139152,7 +139779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 30, + ACTIONS(3954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139183,165 +139810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30534] = 25, - ACTIONS(29), 1, - anon_sym_LT, + [29763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3172), 1, - anon_sym_fn, - ACTIONS(3431), 1, - anon_sym_COLON_COLON, - ACTIONS(3433), 1, - anon_sym_default, - ACTIONS(3439), 1, - sym_metavariable, - ACTIONS(3988), 1, - sym_identifier, - ACTIONS(3990), 1, - anon_sym_for, - STATE(1050), 1, - sym_scoped_type_identifier, - STATE(1318), 1, - sym_generic_type, - STATE(1583), 1, - sym_for_lifetimes, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(3415), 1, - sym_function_modifiers, - STATE(3567), 1, - sym_scoped_identifier, - STATE(3598), 1, - sym_generic_type_with_turbofish, - STATE(3609), 1, - sym_bracketed_type, - ACTIONS(3435), 2, - anon_sym_gen, - anon_sym_union, - STATE(1425), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1504), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3437), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3429), 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, - [30633] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3130), 1, - anon_sym_fn, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3463), 1, - anon_sym_default, - ACTIONS(3469), 1, - sym_metavariable, - ACTIONS(3992), 1, - sym_identifier, - ACTIONS(3994), 1, - anon_sym_for, - STATE(1558), 1, - sym_scoped_type_identifier, - STATE(1594), 1, - sym_for_lifetimes, - STATE(1608), 1, - sym_generic_type, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(3557), 1, - sym_function_modifiers, - STATE(3590), 1, - sym_scoped_identifier, - STATE(3607), 1, - sym_generic_type_with_turbofish, - STATE(3613), 1, - sym_bracketed_type, - ACTIONS(3465), 2, - anon_sym_gen, - anon_sym_union, - STATE(1505), 2, - sym_line_comment, - sym_block_comment, - STATE(1795), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3467), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3459), 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, - [30732] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3996), 1, - anon_sym_COLON_COLON, - STATE(1506), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139357,12 +139834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 28, + ACTIONS(1431), 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, @@ -139384,93 +139862,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, - [30793] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1293), 1, - anon_sym_fn, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3104), 1, - anon_sym_for, - ACTIONS(3413), 1, - anon_sym_COLON_COLON, - ACTIONS(3423), 1, - sym_metavariable, - ACTIONS(3482), 1, - anon_sym_default, - ACTIONS(3998), 1, - sym_identifier, - STATE(1576), 1, - sym_for_lifetimes, - STATE(1955), 1, - sym_scoped_type_identifier, - STATE(1999), 1, - sym_generic_type, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3444), 1, - sym_function_modifiers, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - ACTIONS(3417), 2, - anon_sym_gen, - anon_sym_union, - STATE(1507), 2, - sym_line_comment, - sym_block_comment, - STATE(2029), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3421), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3480), 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, - [30892] = 6, + [29823] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139486,12 +139889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3320), 28, + ACTIONS(3958), 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, @@ -139513,29 +139917,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, - [30953] = 11, + [29883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3324), 1, - anon_sym_BANG, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3330), 1, - anon_sym_move, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - STATE(1503), 1, - sym_block, - STATE(3622), 1, - sym_label, STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139551,10 +139944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3320), 23, + ACTIONS(3962), 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, @@ -139574,26 +139971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [31024] = 10, + anon_sym_else, + [29943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3324), 1, - anon_sym_BANG, - ACTIONS(3330), 1, - anon_sym_move, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - STATE(1503), 1, - sym_block, - STATE(3622), 1, - sym_label, STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139609,10 +139999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3320), 24, + ACTIONS(3966), 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, @@ -139632,61 +140026,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - [31093] = 19, + anon_sym_else, + [30003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1511), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3972), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(393), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1511), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(391), 19, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3970), 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, @@ -139697,51 +140075,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [31179] = 13, + [30063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3976), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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(3870), 25, + ACTIONS(3974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -139761,64 +140137,44 @@ 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, - [31253] = 21, + [30123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3980), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4024), 1, - anon_sym_EQ, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4028), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1513), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4022), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3978), 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, @@ -139829,65 +140185,51 @@ 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, - [31343] = 21, + [30183] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3708), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4032), 1, - anon_sym_EQ, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4028), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4030), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3704), 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, @@ -139898,51 +140240,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [31433] = 15, + [30243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3984), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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(3870), 25, + ACTIONS(3982), 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, @@ -139962,46 +140302,44 @@ 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, - [31511] = 12, + [30303] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3988), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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_DOT, - ACTIONS(3870), 25, + ACTIONS(3986), 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, @@ -140022,134 +140360,99 @@ 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, - [31583] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [30369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1263), 1, - anon_sym_DASH, - ACTIONS(1311), 1, - aux_sym_string_literal_token1, - ACTIONS(1321), 1, - sym__raw_string_literal_start, - ACTIONS(2180), 1, - anon_sym_COLON_COLON, - ACTIONS(3284), 1, - sym_identifier, - ACTIONS(3294), 1, - sym_metavariable, - STATE(2105), 1, - sym_scoped_identifier, - STATE(2156), 1, - sym__literal_pattern, - STATE(3402), 1, - sym_bracketed_type, - STATE(3427), 1, - sym_generic_type_with_turbofish, - ACTIONS(1313), 2, - anon_sym_true, - anon_sym_false, STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3292), 3, - sym_self, - sym_super, - sym_crate, - STATE(2064), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3290), 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, - [31669] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(3992), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4028), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3990), 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, + [30429] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3996), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3776), 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(3994), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4034), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140160,126 +140463,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31761] = 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_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3544), 1, - sym_identifier, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, - sym_metavariable, - STATE(2714), 1, - sym_scoped_identifier, - STATE(2903), 1, - sym__literal_pattern, - STATE(3549), 1, - sym_bracketed_type, - STATE(3562), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3550), 3, - sym_self, - sym_super, - sym_crate, - STATE(2341), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3546), 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, - [31847] = 19, + ACTIONS(4000), 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(3998), 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, + [30549] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1520), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4004), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - STATE(1520), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4038), 19, + ACTIONS(4002), 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, @@ -140290,31 +140573,25 @@ 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, - [31933] = 11, + [30609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4044), 1, - anon_sym_BANG, - ACTIONS(4046), 1, - anon_sym_COLON_COLON, - ACTIONS(4048), 1, - anon_sym_LT2, - STATE(1604), 1, - sym_type_arguments, - STATE(1609), 1, - sym_parameters, STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 17, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140325,16 +140602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3308), 20, + ACTIONS(4006), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140346,70 +140626,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [32003] = 21, + anon_sym_else, + [30669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1522), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4052), 1, - anon_sym_EQ, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4028), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1522), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4050), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1431), 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, @@ -140420,65 +140683,51 @@ 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, - [32093] = 21, + [30729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1523), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1009), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4056), 1, - anon_sym_EQ, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4028), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1523), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4054), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1011), 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, @@ -140489,117 +140738,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [32183] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [30789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - ACTIONS(3570), 1, - sym_identifier, - ACTIONS(3576), 1, - sym_metavariable, - STATE(2675), 1, - sym_scoped_identifier, - STATE(3031), 1, - sym__literal_pattern, - STATE(3549), 1, - sym_bracketed_type, - STATE(3562), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3574), 3, - sym_self, - sym_super, - sym_crate, - STATE(2341), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3572), 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, - [32269] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4002), 2, + ACTIONS(4012), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1525), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 25, + ACTIONS(4010), 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, @@ -140619,64 +140800,99 @@ 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, - [32345] = 21, + [30849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1525), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4016), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4060), 1, - anon_sym_EQ, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4028), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4014), 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, + [30909] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(1393), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4058), 17, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1391), 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, @@ -140687,57 +140903,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [32435] = 17, + [30969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1527), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4020), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(3872), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1527), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3870), 21, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4018), 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, @@ -140750,57 +140958,73 @@ 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, - [32517] = 19, + [31029] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1263), 1, - anon_sym_DASH, - ACTIONS(1311), 1, - aux_sym_string_literal_token1, - ACTIONS(1321), 1, - sym__raw_string_literal_start, - ACTIONS(2180), 1, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3166), 1, + anon_sym_fn, + ACTIONS(3508), 1, anon_sym_COLON_COLON, - ACTIONS(3296), 1, - sym_identifier, - ACTIONS(3306), 1, + ACTIONS(3510), 1, + anon_sym_default, + ACTIONS(3516), 1, sym_metavariable, - STATE(2099), 1, + ACTIONS(4022), 1, + sym_identifier, + ACTIONS(4024), 1, + anon_sym_for, + STATE(1589), 1, + sym_scoped_type_identifier, + STATE(1623), 1, + sym_for_lifetimes, + STATE(1658), 1, + sym_generic_type, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(3594), 1, + sym_function_modifiers, + STATE(3631), 1, sym_scoped_identifier, - STATE(2141), 1, - sym__literal_pattern, - STATE(3402), 1, - sym_bracketed_type, - STATE(3427), 1, + STATE(3649), 1, sym_generic_type_with_turbofish, - ACTIONS(1313), 2, - anon_sym_true, - anon_sym_false, + STATE(3655), 1, + sym_bracketed_type, + ACTIONS(3512), 2, + anon_sym_gen, + anon_sym_union, STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3304), 3, + STATE(1896), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3514), 3, sym_self, sym_super, sym_crate, - STATE(2064), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3302), 20, + ACTIONS(3506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140818,136 +141042,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32603] = 22, + [31128] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, + ACTIONS(3344), 1, + anon_sym_BANG, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3350), 1, + anon_sym_move, ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4020), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4028), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + STATE(1449), 1, + sym_block, + STATE(3664), 1, + sym_label, STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3342), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3812), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4034), 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, - [32695] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4028), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1530), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 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_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3340), 23, 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, @@ -140958,59 +141095,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_COMMA, - anon_sym_else, - [32785] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + STATE(1530), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3342), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(3872), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3870), 20, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3340), 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, @@ -141022,57 +141148,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_EQ_EQ, + 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, - [32869] = 19, + [31260] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1263), 1, - anon_sym_DASH, - ACTIONS(1311), 1, - aux_sym_string_literal_token1, - ACTIONS(1321), 1, - sym__raw_string_literal_start, - ACTIONS(2180), 1, + ACTIONS(1271), 1, + anon_sym_fn, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3136), 1, + anon_sym_for, + ACTIONS(3397), 1, anon_sym_COLON_COLON, - ACTIONS(3272), 1, - sym_identifier, - ACTIONS(3282), 1, + ACTIONS(3407), 1, sym_metavariable, - STATE(2082), 1, + ACTIONS(3483), 1, + anon_sym_default, + ACTIONS(4028), 1, + sym_identifier, + STATE(1622), 1, + sym_for_lifetimes, + STATE(1977), 1, + sym_scoped_type_identifier, + STATE(2023), 1, + sym_generic_type, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3571), 1, + sym_function_modifiers, + STATE(3577), 1, sym_scoped_identifier, - STATE(2124), 1, - sym__literal_pattern, - STATE(3402), 1, + STATE(3590), 1, sym_bracketed_type, - STATE(3427), 1, - sym_generic_type_with_turbofish, - ACTIONS(1313), 2, - anon_sym_true, - anon_sym_false, - STATE(1532), 2, + ACTIONS(3401), 2, + anon_sym_gen, + anon_sym_union, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(1309), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3280), 3, + STATE(2044), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3405), 3, sym_self, sym_super, sym_crate, - STATE(2064), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3278), 20, + ACTIONS(3481), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141090,56 +141231,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32955] = 19, + [31359] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_BANG, + ACTIONS(3350), 1, + anon_sym_move, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + STATE(1449), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(1532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3342), 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(3340), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [31428] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3548), 1, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3204), 1, + anon_sym_fn, + ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3582), 1, - sym_identifier, - ACTIONS(3588), 1, + ACTIONS(3469), 1, + anon_sym_default, + ACTIONS(3477), 1, sym_metavariable, - STATE(2550), 1, + ACTIONS(4030), 1, + sym_identifier, + ACTIONS(4032), 1, + anon_sym_for, + STATE(1062), 1, + sym_scoped_type_identifier, + STATE(1113), 1, + sym_generic_type, + STATE(1621), 1, + sym_for_lifetimes, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(3454), 1, + sym_function_modifiers, + STATE(3604), 1, sym_scoped_identifier, - STATE(3058), 1, - sym__literal_pattern, - STATE(3549), 1, - sym_bracketed_type, - STATE(3562), 1, + STATE(3640), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, + STATE(3651), 1, + sym_bracketed_type, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1472), 2, + sym_higher_ranked_trait_bound, + sym_function_type, STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3586), 3, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3475), 3, sym_self, sym_super, sym_crate, - STATE(2341), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3584), 20, + ACTIONS(3465), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141157,26 +141364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [33041] = 9, + [31527] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3441), 1, - anon_sym_LBRACE, - ACTIONS(3443), 1, + ACTIONS(4034), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_BANG, - STATE(1468), 1, - sym_field_initializer_list, STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141192,10 +141390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 24, + ACTIONS(1431), 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, @@ -141216,59 +141416,128 @@ 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, - [33107] = 22, + anon_sym_else, + [31588] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1241), 1, + anon_sym_DASH, + ACTIONS(1289), 1, + aux_sym_string_literal_token1, + ACTIONS(1299), 1, + sym__raw_string_literal_start, + ACTIONS(2554), 1, + anon_sym_COLON_COLON, + ACTIONS(3328), 1, + sym_identifier, + ACTIONS(3338), 1, + sym_metavariable, + STATE(2105), 1, + sym_scoped_identifier, + STATE(2165), 1, + sym__literal_pattern, + STATE(3440), 1, + sym_bracketed_type, + STATE(3466), 1, + sym_generic_type_with_turbofish, + ACTIONS(1291), 2, + anon_sym_true, + anon_sym_false, + STATE(1535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1287), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3336), 3, + sym_self, + sym_super, + sym_crate, + STATE(2088), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3334), 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, + [31674] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4026), 1, - anon_sym_DOT_DOT, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4002), 2, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4028), 2, + ACTIONS(4062), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1535), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3940), 7, + ACTIONS(3852), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141276,7 +141545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141287,47 +141556,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33199] = 11, + [31766] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3872), 9, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3870), 25, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1537), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 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_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141338,47 +141623,43 @@ 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, - [33269] = 10, + [31856] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - STATE(1537), 2, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3904), 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_DOT, - ACTIONS(3870), 25, + ACTIONS(3902), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141404,77 +141685,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33337] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1538), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4066), 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(4064), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33394] = 10, + [31928] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4048), 1, - anon_sym_LT2, - ACTIONS(4068), 1, + ACTIONS(3496), 1, + anon_sym_LBRACE, + ACTIONS(3498), 1, anon_sym_COLON_COLON, - STATE(1604), 1, - sym_type_arguments, - STATE(1609), 1, - sym_parameters, + ACTIONS(4064), 1, + anon_sym_BANG, + STATE(1506), 1, + sym_field_initializer_list, STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3334), 17, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141485,16 +141712,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(3332), 20, + ACTIONS(1431), 24, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141505,160 +141732,58 @@ static const uint16_t ts_small_parse_table[] = { 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, - [33461] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4072), 1, - anon_sym_LPAREN, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4075), 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(4070), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33520] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4077), 1, - anon_sym_COLON_COLON, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4075), 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(4070), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33579] = 10, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [31994] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4048), 1, - anon_sym_LT2, - ACTIONS(4068), 1, - anon_sym_COLON_COLON, - STATE(1604), 1, - sym_type_arguments, - STATE(1609), 1, - sym_parameters, - STATE(1542), 2, + anon_sym_AMP, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 17, - anon_sym_PLUS, + ACTIONS(4038), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3904), 5, 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(3338), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3902), 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, @@ -141669,84 +141794,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, - [33646] = 5, + anon_sym_COMMA, + anon_sym_else, + [32070] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4082), 10, - anon_sym_LPAREN, + ACTIONS(3772), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3776), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(3904), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4080), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33703] = 10, + STATE(1541), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3902), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_COMMA, + anon_sym_else, + [32152] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, + ACTIONS(4066), 1, anon_sym_LPAREN, - ACTIONS(4048), 1, - anon_sym_LT2, ACTIONS(4068), 1, + anon_sym_BANG, + ACTIONS(4070), 1, anon_sym_COLON_COLON, - STATE(1604), 1, + ACTIONS(4072), 1, + anon_sym_LT2, + STATE(1646), 1, sym_type_arguments, - STATE(1609), 1, + STATE(1660), 1, sym_parameters, - STATE(1544), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3344), 17, + ACTIONS(3356), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141764,7 +141907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3342), 20, + ACTIONS(3352), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141785,45 +141928,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33770] = 8, + [32222] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_BANG, - ACTIONS(4084), 1, - sym_identifier, - STATE(1545), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4076), 1, + anon_sym_EQ, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 16, - anon_sym_PLUS, + ACTIONS(4038), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4074), 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, + [32312] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, + ACTIONS(4080), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3320), 23, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4078), 19, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141834,32 +142060,126 @@ 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, - [33833] = 5, + anon_sym_COMMA, + anon_sym_else, + [32398] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1546), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4088), 10, - anon_sym_LPAREN, + ACTIONS(3772), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3776), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4084), 1, + anon_sym_EQ, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1545), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4082), 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, + [32488] = 19, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1241), 1, + anon_sym_DASH, + ACTIONS(1289), 1, + aux_sym_string_literal_token1, + ACTIONS(1299), 1, + sym__raw_string_literal_start, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3326), 1, sym_metavariable, - ACTIONS(4086), 32, + STATE(2136), 1, + sym_scoped_identifier, + STATE(2159), 1, + sym__literal_pattern, + STATE(3440), 1, + sym_bracketed_type, + STATE(3466), 1, + sym_generic_type_with_turbofish, + ACTIONS(1291), 2, + anon_sym_true, + anon_sym_false, + STATE(1546), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1287), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3324), 3, + sym_self, + sym_super, + sym_crate, + STATE(2088), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3322), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141877,60 +142197,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33890] = 9, + [32574] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4044), 1, - anon_sym_BANG, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - STATE(1829), 1, - sym_field_initializer_list, - STATE(1547), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1479), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(381), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1477), 23, + STATE(1547), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(379), 19, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141941,49 +142263,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, - [33955] = 8, + anon_sym_COMMA, + anon_sym_else, + [32660] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3314), 1, - anon_sym_BANG, - ACTIONS(4094), 1, - anon_sym_COLON_COLON, - STATE(1468), 1, - sym_field_initializer_list, - STATE(1548), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1479), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(3904), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1477), 24, + STATE(1548), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3902), 20, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141995,49 +142329,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [34018] = 7, + anon_sym_COMMA, + anon_sym_else, + [32744] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3324), 1, - anon_sym_BANG, - ACTIONS(4000), 1, + ACTIONS(1241), 1, + anon_sym_DASH, + ACTIONS(1289), 1, + aux_sym_string_literal_token1, + ACTIONS(1299), 1, + sym__raw_string_literal_start, + ACTIONS(2554), 1, anon_sym_COLON_COLON, + ACTIONS(3304), 1, + sym_identifier, + ACTIONS(3314), 1, + sym_metavariable, + STATE(2111), 1, + sym_scoped_identifier, + STATE(2163), 1, + sym__literal_pattern, + STATE(3440), 1, + sym_bracketed_type, + STATE(3466), 1, + sym_generic_type_with_turbofish, + ACTIONS(1291), 2, + anon_sym_true, + anon_sym_false, STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1287), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3312), 3, + sym_self, + sym_super, + sym_crate, + STATE(2088), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3310), 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, + [32830] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3320), 24, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4086), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142048,32 +142467,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [34078] = 6, + anon_sym_COMMA, + anon_sym_else, + [32920] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 1, - anon_sym_LBRACE, - STATE(1550), 2, + ACTIONS(1655), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3562), 1, + sym_identifier, + ACTIONS(3566), 1, + anon_sym_COLON_COLON, + ACTIONS(3570), 1, + sym_metavariable, + STATE(2608), 1, + sym_scoped_identifier, + STATE(3011), 1, + sym__literal_pattern, + STATE(3586), 1, + sym_bracketed_type, + STATE(3599), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3381), 16, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3568), 3, + sym_self, + sym_super, + sym_crate, + STATE(2453), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3564), 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, + [33006] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4036), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, + STATE(1552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 9, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -142081,13 +142568,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(3383), 24, + ACTIONS(3902), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142106,45 +142593,132 @@ 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, - [34136] = 7, + anon_sym_COMMA, + anon_sym_else, + [33076] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(1655), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3566), 1, anon_sym_COLON_COLON, - STATE(1551), 2, + ACTIONS(3578), 1, + sym_identifier, + ACTIONS(3584), 1, + sym_metavariable, + STATE(2662), 1, + sym_scoped_identifier, + STATE(2922), 1, + sym__literal_pattern, + STATE(3586), 1, + sym_bracketed_type, + STATE(3599), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3582), 3, + sym_self, + sym_super, + sym_crate, + STATE(2453), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3580), 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, + [33162] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4092), 1, + anon_sym_EQ, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1554), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3357), 22, + ACTIONS(4090), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142153,30 +142727,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34196] = 5, + anon_sym_COMMA, + anon_sym_else, + [33252] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1552), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3381), 16, - anon_sym_PLUS, + ACTIONS(4038), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -142184,13 +142762,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(3383), 25, + ACTIONS(3902), 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, @@ -142209,49 +142787,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34252] = 9, + anon_sym_COMMA, + anon_sym_else, + [33320] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, ACTIONS(4042), 1, - anon_sym_LPAREN, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, ACTIONS(4048), 1, - anon_sym_LT2, - STATE(1605), 1, - sym_type_arguments, - STATE(1610), 1, - sym_parameters, - STATE(1553), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3355), 17, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3353), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4002), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142260,45 +142857,51 @@ 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, - [34316] = 6, + [33412] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3562), 1, - anon_sym_LBRACE, - STATE(1554), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3373), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1557), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3904), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3375), 24, + ACTIONS(3902), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142317,46 +142920,49 @@ 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] = 9, + anon_sym_COMMA, + anon_sym_else, + [33490] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4048), 1, - anon_sym_LT2, - STATE(1605), 1, - sym_type_arguments, - STATE(1610), 1, - sym_parameters, - STATE(1555), 2, + anon_sym_AMP, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3367), 17, - anon_sym_PLUS, + ACTIONS(4038), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3365), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3902), 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, @@ -142367,53 +142973,140 @@ 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, - [34438] = 9, + anon_sym_COMMA, + anon_sym_else, + [33564] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4048), 1, - anon_sym_LT2, - STATE(1605), 1, - sym_type_arguments, - STATE(1610), 1, - sym_parameters, - STATE(1556), 2, + ACTIONS(1655), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3566), 1, + anon_sym_COLON_COLON, + ACTIONS(3590), 1, + sym_identifier, + ACTIONS(3596), 1, + sym_metavariable, + STATE(2670), 1, + sym_scoped_identifier, + STATE(2940), 1, + sym__literal_pattern, + STATE(3586), 1, + sym_bracketed_type, + STATE(3599), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3594), 3, + sym_self, + sym_super, + sym_crate, + STATE(2453), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3592), 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, + [33650] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4096), 1, + anon_sym_EQ, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3385), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4094), 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, @@ -142422,47 +143115,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34502] = 6, + anon_sym_COMMA, + anon_sym_else, + [33740] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, - anon_sym_LBRACE, - STATE(1557), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3393), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4060), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3395), 24, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3950), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142473,85 +143189,79 @@ 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, - [34560] = 9, + [33832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4048), 1, - anon_sym_LT2, - STATE(1605), 1, - sym_type_arguments, - STATE(1610), 1, - sym_parameters, - STATE(1558), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3399), 17, - anon_sym_PLUS, + ACTIONS(4100), 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_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3397), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34624] = 5, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4098), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33889] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1559), 2, + ACTIONS(3358), 1, + anon_sym_BANG, + ACTIONS(4102), 1, + anon_sym_COLON_COLON, + STATE(1506), 1, + sym_field_initializer_list, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(3361), 16, + ACTIONS(1429), 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, @@ -142561,7 +143271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3363), 25, + ACTIONS(1431), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -142584,22 +143294,25 @@ 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, - [34680] = 7, + [33952] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 1, + ACTIONS(4068), 1, anon_sym_BANG, - ACTIONS(3375), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4106), 1, anon_sym_COLON_COLON, - STATE(1560), 2, + STATE(1807), 1, + sym_field_initializer_list, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(3371), 17, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142610,14 +143323,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(3369), 22, + ACTIONS(1431), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142632,32 +143343,89 @@ 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, - [34740] = 6, + [34017] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, - anon_sym_LBRACE, - STATE(1561), 2, + ACTIONS(4112), 1, + anon_sym_COLON_COLON, + STATE(1565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4110), 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(4108), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34076] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + ACTIONS(3528), 1, + anon_sym_BANG, + ACTIONS(4115), 1, + sym_identifier, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3361), 16, + ACTIONS(3342), 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, @@ -142667,10 +143435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3363), 24, + anon_sym_as, + ACTIONS(3340), 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, @@ -142690,21 +143460,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + [34139] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1567), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4119), 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_as, - [34798] = 7, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4117), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34196] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(4121), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_BANG, - STATE(1562), 2, + STATE(1646), 1, + sym_type_arguments, + STATE(1660), 1, + sym_parameters, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3383), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142715,16 +143541,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(1477), 24, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3381), 20, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142736,28 +143562,84 @@ 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, - [34858] = 7, + [34263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 1, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4125), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(3383), 1, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1563), 2, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4123), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34320] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(4121), 1, + anon_sym_COLON_COLON, + STATE(1646), 1, + sym_type_arguments, + STATE(1660), 1, + sym_parameters, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(3379), 17, + ACTIONS(3372), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142775,8 +143657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3377), 22, - anon_sym_LPAREN, + ACTIONS(3370), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142797,20 +143678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [34918] = 7, + [34387] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3314), 1, - anon_sym_BANG, - ACTIONS(4096), 1, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(4121), 1, anon_sym_COLON_COLON, - STATE(1564), 2, + STATE(1646), 1, + sym_type_arguments, + STATE(1660), 1, + sym_parameters, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3366), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142821,15 +143707,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(1477), 24, - anon_sym_LPAREN, + ACTIONS(3364), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142841,29 +143728,79 @@ 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, - [34978] = 7, + [34454] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 1, + ACTIONS(4127), 1, + anon_sym_LPAREN, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4110), 9, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(3395), 1, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1565), 2, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4108), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34513] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3413), 1, + anon_sym_BANG, + ACTIONS(3415), 1, + anon_sym_COLON_COLON, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(3391), 17, + ACTIONS(3411), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142881,7 +143818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3389), 22, + ACTIONS(3409), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142904,35 +143841,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [35038] = 5, + [34573] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1566), 2, + ACTIONS(3457), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_COLON_COLON, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3393), 16, + ACTIONS(3455), 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(3395), 25, + ACTIONS(3453), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142944,46 +143886,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [35094] = 5, + anon_sym_LT2, + [34633] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1567), 2, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(3373), 16, + ACTIONS(3435), 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(3375), 25, + ACTIONS(3433), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142995,147 +143939,46 @@ 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, - [35150] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, - anon_sym_CARET, - ACTIONS(4104), 1, - anon_sym_AMP, - ACTIONS(4106), 1, - anon_sym_PIPE, - ACTIONS(4108), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, - anon_sym_EQ, - ACTIONS(4122), 1, - anon_sym_DOT_DOT, - STATE(407), 1, - sym_block, - STATE(3541), 1, - sym_label, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4120), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4124), 2, anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1568), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4114), 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, - [35245] = 25, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [34693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3413), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4126), 1, - anon_sym_SEMI, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4132), 1, - anon_sym_COMMA, - STATE(2800), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1569), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3415), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143146,21 +143989,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35340] = 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_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1570), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3437), 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, @@ -143170,11 +144023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 25, + ACTIONS(3439), 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, @@ -143195,20 +144047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35395] = 7, + [34805] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3704), 1, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3706), 1, + ACTIONS(3423), 1, anon_sym_COLON_COLON, - STATE(1571), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, + ACTIONS(3419), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143219,12 +144072,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(3320), 23, + ACTIONS(3417), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143239,42 +144094,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35454] = 5, + anon_sym_LT2, + [34865] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1572), 2, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4072), 1, + anon_sym_LT2, + STATE(1648), 1, + sym_type_arguments, + STATE(1664), 1, + sym_parameters, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3381), 16, + ACTIONS(3427), 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(3383), 24, - anon_sym_LPAREN, + ACTIONS(3425), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143288,31 +144150,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35509] = 5, + [34929] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1573), 2, + ACTIONS(3560), 1, + anon_sym_LBRACE, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 15, + ACTIONS(3457), 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, @@ -143322,10 +144184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 25, + ACTIONS(3459), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143348,25 +144209,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35564] = 7, + [34987] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4134), 1, - anon_sym_SQUOTE, - STATE(1804), 1, - sym_label, - STATE(1574), 2, + ACTIONS(3670), 1, + anon_sym_LBRACE, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(3421), 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, @@ -143376,7 +144236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3652), 23, + ACTIONS(3423), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143399,67 +144259,48 @@ 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, - [35623] = 25, + [35045] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4072), 1, + anon_sym_LT2, + STATE(1648), 1, + sym_type_arguments, + STATE(1664), 1, + sym_parameters, + STATE(1582), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3451), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4108), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, - anon_sym_EQ, - ACTIONS(4122), 1, - anon_sym_DOT_DOT, - STATE(1417), 1, - sym_block, - STATE(3622), 1, - sym_label, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3449), 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, @@ -143468,135 +144309,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35718] = 22, - ACTIONS(29), 1, - anon_sym_LT, + 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, + [35109] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3413), 1, + ACTIONS(3718), 1, anon_sym_COLON_COLON, - ACTIONS(3423), 1, - sym_metavariable, - ACTIONS(3482), 1, - anon_sym_default, - ACTIONS(4136), 1, - sym_identifier, - ACTIONS(4138), 1, - anon_sym_fn, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(2596), 1, - sym_scoped_type_identifier, - STATE(3397), 1, - sym_function_modifiers, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - STATE(3635), 1, - sym_generic_type, - ACTIONS(3417), 2, - anon_sym_gen, - anon_sym_union, - STATE(1576), 2, + ACTIONS(4064), 1, + anon_sym_BANG, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3421), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3480), 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, - [35807] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(1429), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4140), 1, - anon_sym_SEMI, - ACTIONS(4142), 1, - anon_sym_COMMA, - STATE(2831), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1431), 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, @@ -143607,15 +144362,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35902] = 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, + [35169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1578), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(3393), 16, + ACTIONS(3421), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143632,10 +144394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3395), 24, + ACTIONS(3423), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143656,67 +144418,42 @@ 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, - [35957] = 25, + [35225] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(3550), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, + STATE(1585), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3437), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4104), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4108), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, - anon_sym_EQ, - ACTIONS(4122), 1, - anon_sym_DOT_DOT, - STATE(1741), 1, - sym_block, - STATE(3673), 1, - sym_label, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4114), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3439), 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, @@ -143727,66 +144464,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36052] = 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, + [35283] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(885), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(3544), 1, + anon_sym_LBRACE, + STATE(1586), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3413), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, - anon_sym_SEMI, - ACTIONS(4146), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1580), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3415), 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, @@ -143797,66 +144516,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36147] = 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, + [35341] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(3344), 1, + anon_sym_BANG, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + STATE(1587), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3342), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4108), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, - anon_sym_EQ, - ACTIONS(4122), 1, - anon_sym_DOT_DOT, - STATE(1746), 1, - sym_block, - STATE(3673), 1, - sym_label, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4114), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3340), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143867,24 +144569,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36242] = 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, + anon_sym_as, + [35401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3842), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1582), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3457), 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, @@ -143894,10 +144602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 23, + ACTIONS(3459), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143917,85 +144625,81 @@ 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, - [36299] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [35457] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3413), 1, - anon_sym_COLON_COLON, - ACTIONS(3423), 1, - sym_metavariable, - ACTIONS(3482), 1, - anon_sym_default, - ACTIONS(4148), 1, - sym_identifier, - ACTIONS(4150), 1, - anon_sym_fn, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(2566), 1, - sym_scoped_type_identifier, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3448), 1, - sym_function_modifiers, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - STATE(3635), 1, - sym_generic_type, - ACTIONS(3417), 2, - anon_sym_gen, - anon_sym_union, - STATE(1583), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3421), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3480), 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, - [36388] = 6, + anon_sym_SLASH_STAR, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4072), 1, + anon_sym_LT2, + STATE(1648), 1, + sym_type_arguments, + STATE(1664), 1, + sym_parameters, + STATE(1589), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3443), 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(3441), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35521] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_COLON_COLON, - STATE(1584), 2, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4072), 1, + anon_sym_LT2, + STATE(1648), 1, + sym_type_arguments, + STATE(1664), 1, + sym_parameters, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3431), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144006,15 +144710,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(1477), 24, - anon_sym_LPAREN, + ACTIONS(3429), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144026,28 +144731,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [36445] = 6, + [35585] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3888), 2, - anon_sym_LBRACE, + ACTIONS(3358), 1, + anon_sym_BANG, + ACTIONS(4130), 1, anon_sym_COLON_COLON, - STATE(1585), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144063,10 +144766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 23, + ACTIONS(1431), 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, @@ -144086,67 +144789,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [36502] = 25, + [35645] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4150), 1, anon_sym_EQ, - ACTIONS(4122), 1, + ACTIONS(4156), 1, anon_sym_DOT_DOT, - STATE(475), 1, + STATE(1788), 1, sym_block, - STATE(3672), 1, + STATE(3718), 1, sym_label, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, + ACTIONS(4158), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1586), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144157,19 +144861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36597] = 7, + [35740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4154), 1, - anon_sym_else, - STATE(1734), 1, - sym_else_clause, - STATE(1587), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(1331), 15, + ACTIONS(3650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144185,9 +144885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1329), 23, + ACTIONS(3648), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -144208,67 +144909,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [36656] = 25, + [35795] = 25, + 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(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4150), 1, anon_sym_EQ, - ACTIONS(4122), 1, + ACTIONS(4156), 1, anon_sym_DOT_DOT, - STATE(1406), 1, + STATE(412), 1, sym_block, - STATE(3622), 1, + STATE(3574), 1, sym_label, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, + ACTIONS(4158), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1588), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144279,15 +144981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36751] = 5, + [35890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1589), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 15, + ACTIONS(3664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144303,7 +145005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 25, + ACTIONS(3662), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -144329,15 +145031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36806] = 5, + [35945] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1590), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 15, + ACTIONS(3674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144353,7 +145055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3524), 25, + ACTIONS(3672), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -144379,17 +145081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36861] = 6, + [36000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3888), 1, - anon_sym_COLON_COLON, - STATE(1591), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144405,10 +145105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 24, + ACTIONS(3680), 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, @@ -144428,19 +145129,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [36918] = 6, + [36055] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 1, - sym_label, - STATE(1592), 2, + ACTIONS(4160), 1, + anon_sym_else, + STATE(1777), 1, + sym_else_clause, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(1353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144456,10 +145159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3652), 24, + ACTIONS(1351), 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, @@ -144479,68 +145182,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [36975] = 25, + [36114] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3457), 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(3459), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [36169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + STATE(1600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3421), 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(3423), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [36224] = 25, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4150), 1, anon_sym_EQ, - ACTIONS(4122), 1, + ACTIONS(4156), 1, anon_sym_DOT_DOT, - STATE(482), 1, + STATE(415), 1, sym_block, - STATE(3672), 1, + STATE(3574), 1, sym_label, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, + ACTIONS(4158), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1593), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144551,133 +145353,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37070] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [36319] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_extern, - ACTIONS(3413), 1, + ACTIONS(4068), 1, + anon_sym_BANG, + ACTIONS(4162), 1, anon_sym_COLON_COLON, - ACTIONS(3423), 1, - sym_metavariable, - ACTIONS(3482), 1, - anon_sym_default, - ACTIONS(4156), 1, - sym_identifier, - ACTIONS(4158), 1, - anon_sym_fn, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(2622), 1, - sym_scoped_type_identifier, - STATE(3417), 1, - sym_generic_type_with_turbofish, - STATE(3547), 1, - sym_scoped_identifier, - STATE(3553), 1, - sym_bracketed_type, - STATE(3568), 1, - sym_function_modifiers, - STATE(3635), 1, - sym_generic_type, - ACTIONS(3417), 2, - anon_sym_gen, - anon_sym_union, - STATE(1594), 2, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3421), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3480), 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, - [37159] = 25, + ACTIONS(1429), 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(1431), 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, + [36378] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(867), 1, + ACTIONS(871), 1, anon_sym_RBRACK, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4160), 1, + ACTIONS(4164), 1, anon_sym_SEMI, - ACTIONS(4162), 1, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4170), 1, anon_sym_COMMA, - STATE(2834), 1, + STATE(3034), 1, aux_sym_arguments_repeat1, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1595), 2, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144688,17 +145475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37254] = 6, + [36473] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3842), 1, + ACTIONS(3944), 1, + anon_sym_BANG, + ACTIONS(3946), 1, anon_sym_COLON_COLON, - STATE(1596), 2, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144714,10 +145503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 24, + ACTIONS(3340), 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, @@ -144737,68 +145526,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [37311] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [36532] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, + ACTIONS(937), 1, + anon_sym_RBRACK, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4122), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - STATE(392), 1, - sym_block, - STATE(3541), 1, - sym_label, - ACTIONS(4098), 2, + ACTIONS(4172), 1, + anon_sym_SEMI, + ACTIONS(4174), 1, + anon_sym_COMMA, + STATE(2837), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1597), 2, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144809,22 +145597,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37406] = 5, + [36627] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1598), 2, + ACTIONS(3758), 1, + anon_sym_COLON_COLON, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3373), 16, + ACTIONS(3760), 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, @@ -144834,10 +145623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3375), 24, + ACTIONS(3756), 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, @@ -144857,21 +145646,89 @@ 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, - [37461] = 7, + [36684] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(883), 1, + anon_sym_RBRACK, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, ACTIONS(4044), 1, - anon_sym_BANG, - ACTIONS(4164), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4176), 1, + anon_sym_SEMI, + ACTIONS(4178), 1, + anon_sym_COMMA, + STATE(3094), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1607), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [36779] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3892), 1, anon_sym_COLON_COLON, - STATE(1599), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144887,10 +145744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(3756), 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, @@ -144910,40 +145767,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_SQUOTE, anon_sym_as, - [37520] = 6, + [36836] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - STATE(1600), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4136), 1, + anon_sym_CARET, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_DOT_DOT, + STATE(1461), 1, + sym_block, + STATE(3664), 1, + sym_label, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4154), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4158), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, - anon_sym_PLUS, + ACTIONS(4134), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 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, + [36931] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1301), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4136), 1, anon_sym_CARET, + ACTIONS(4138), 1, anon_sym_AMP, + ACTIONS(4140), 1, anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_DOT_DOT, + STATE(477), 1, + sym_block, + STATE(3717), 1, + sym_label, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3320), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4158), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144954,46 +145909,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_SQUOTE, - anon_sym_as, - [37577] = 5, + [37026] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1601), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3361), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1301), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4136), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4138), 1, anon_sym_AMP, + ACTIONS(4140), 1, anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_DOT_DOT, + STATE(471), 1, + sym_block, + STATE(3717), 1, + sym_label, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3363), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4158), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145004,45 +145979,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, - [37632] = 5, + [37121] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1602), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3658), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4136), 1, anon_sym_CARET, + ACTIONS(4138), 1, anon_sym_AMP, + ACTIONS(4140), 1, anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_DOT_DOT, + STATE(1783), 1, + sym_block, + STATE(3718), 1, + sym_label, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3656), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4158), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1612), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145053,23 +146049,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_DASH_GT, - anon_sym_as, - [37686] = 5, + [37216] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + ACTIONS(4180), 1, + anon_sym_SQUOTE, + STATE(1757), 1, + sym_label, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3580), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145085,7 +146077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3578), 24, + ACTIONS(3688), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145108,23 +146100,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37740] = 5, + [37275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3592), 15, + ACTIONS(3413), 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, @@ -145134,7 +146126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3590), 24, + ACTIONS(3415), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145159,15 +146151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37794] = 5, + [37330] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3596), 15, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145183,10 +146177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3594), 24, + ACTIONS(3340), 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, @@ -145206,19 +146200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [37848] = 6, + [37387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4166), 1, - anon_sym_DASH_GT, - STATE(1606), 2, + ACTIONS(3892), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3604), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145234,7 +146229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3602), 23, + ACTIONS(3756), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145258,17 +146253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37904] = 6, + [37444] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4168), 1, + ACTIONS(4182), 1, anon_sym_COLON_COLON, - STATE(1607), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145284,10 +146279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3385), 23, + ACTIONS(1431), 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, @@ -145307,18 +146302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [37960] = 6, + [37501] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4168), 1, - anon_sym_COLON_COLON, - STATE(1608), 2, + STATE(1409), 1, + sym_label, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3399), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145334,10 +146330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3397), 23, + ACTIONS(3688), 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, @@ -145357,24 +146353,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [38016] = 6, + [37558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4170), 1, - anon_sym_DASH_GT, - STATE(1609), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3616), 15, + ACTIONS(3437), 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, @@ -145384,7 +146380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3614), 23, + ACTIONS(3439), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145407,18 +146403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [38072] = 6, + [37613] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4172), 1, - anon_sym_DASH_GT, - STATE(1610), 2, + ACTIONS(3758), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145434,7 +146432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3620), 23, + ACTIONS(3756), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145458,219 +146456,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38128] = 21, + [37670] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_EQ, - ACTIONS(4102), 1, - anon_sym_CARET, - ACTIONS(4104), 1, - anon_sym_AMP, - ACTIONS(4106), 1, - anon_sym_PIPE, - ACTIONS(4108), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4174), 1, - anon_sym_DOT_DOT, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4120), 2, - anon_sym_GT, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3397), 1, + anon_sym_COLON_COLON, + ACTIONS(3407), 1, + sym_metavariable, + ACTIONS(3483), 1, + anon_sym_default, + ACTIONS(4184), 1, + sym_identifier, + ACTIONS(4186), 1, + anon_sym_fn, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(2621), 1, + sym_scoped_type_identifier, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3486), 1, + sym_function_modifiers, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type, + ACTIONS(3401), 2, + anon_sym_gen, + anon_sym_union, + STATE(1621), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3481), 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, + [37759] = 22, + ACTIONS(29), 1, anon_sym_LT, - ACTIONS(4176), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1611), 2, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3397), 1, + anon_sym_COLON_COLON, + ACTIONS(3407), 1, + sym_metavariable, + ACTIONS(3483), 1, + anon_sym_default, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_fn, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(2571), 1, + sym_scoped_type_identifier, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3463), 1, + sym_function_modifiers, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type, + ACTIONS(3401), 2, + anon_sym_gen, + anon_sym_union, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4050), 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, - [38214] = 22, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3481), 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, + [37848] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1279), 1, + anon_sym_extern, + ACTIONS(3397), 1, + anon_sym_COLON_COLON, + ACTIONS(3407), 1, + sym_metavariable, + ACTIONS(3483), 1, + anon_sym_default, + ACTIONS(4192), 1, + sym_identifier, + ACTIONS(4194), 1, + anon_sym_fn, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(2822), 1, + sym_scoped_type_identifier, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3590), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type, + STATE(3605), 1, + sym_function_modifiers, + ACTIONS(3401), 2, + anon_sym_gen, + anon_sym_union, + STATE(1623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1265), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3405), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3481), 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, + [37937] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(913), 1, + anon_sym_RBRACK, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4174), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4120), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4176), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1612), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3776), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4114), 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, - [38302] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1613), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3391), 17, + ACTIONS(4196), 1, + anon_sym_SEMI, + ACTIONS(4198), 1, + anon_sym_COMMA, + STATE(3090), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3389), 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, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [38356] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_DASH_GT, - STATE(1614), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 15, - anon_sym_PLUS, + ACTIONS(4038), 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(3664), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145681,96 +146727,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38412] = 6, + [38032] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, - anon_sym_DASH_GT, - STATE(1615), 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, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4136), 1, anon_sym_CARET, + ACTIONS(4138), 1, anon_sym_AMP, + ACTIONS(4140), 1, anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_DOT_DOT, + STATE(1455), 1, + sym_block, + STATE(3664), 1, + sym_label, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3670), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4158), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38468] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4182), 1, - anon_sym_DASH_GT, - STATE(1616), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 15, - anon_sym_PLUS, + ACTIONS(4134), 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(3676), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145781,95 +146797,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38524] = 5, + [38127] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3506), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4200), 1, + anon_sym_RPAREN, + ACTIONS(4202), 1, + anon_sym_COMMA, + STATE(2876), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3504), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [38578] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4168), 1, - anon_sym_COLON_COLON, - STATE(1618), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 15, - anon_sym_PLUS, + ACTIONS(4038), 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(3353), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145880,29 +146865,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_EQ_EQ, - 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, - [38634] = 6, + [38219] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_DASH_GT, - STATE(1619), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 15, - anon_sym_PLUS, + ACTIONS(4134), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -145911,13 +146897,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(3510), 23, + ACTIONS(3902), 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, @@ -145936,40 +146919,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38690] = 10, + anon_sym_SQUOTE, + [38285] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - STATE(1620), 2, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3904), 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_DOT, - ACTIONS(3870), 21, + ACTIONS(3902), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -145991,15 +146976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38754] = 5, + [38353] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(4204), 1, + anon_sym_DASH_GT, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 15, + ACTIONS(3658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146015,7 +147002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3520), 24, + ACTIONS(3656), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146038,48 +147025,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, - [38808] = 13, + [38409] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4104), 1, + ACTIONS(4092), 1, + anon_sym_EQ, + ACTIONS(4136), 1, + anon_sym_CARET, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4098), 2, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1622), 2, + ACTIONS(4154), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3870), 21, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4090), 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, @@ -146090,22 +147090,16 @@ 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, - [38878] = 5, + [38495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1623), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 15, + ACTIONS(3588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146121,7 +147115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3528), 24, + ACTIONS(3586), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146144,45 +147138,39 @@ 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_COLON_COLON, anon_sym_as, - [38932] = 12, + [38549] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1624), 2, + ACTIONS(4210), 1, + anon_sym_COLON_COLON, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(3427), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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(3870), 21, + ACTIONS(3425), 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, @@ -146201,46 +147189,36 @@ 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, - [39000] = 14, + anon_sym_as, + [38605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, - anon_sym_CARET, - ACTIONS(4104), 1, - anon_sym_AMP, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1625), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(3654), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 21, + ACTIONS(3652), 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, @@ -146259,16 +147237,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, - [39072] = 5, + anon_sym_DASH_GT, + anon_sym_as, + [38659] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1626), 2, + ACTIONS(4212), 1, + anon_sym_COLON_COLON, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146284,7 +147265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3536), 24, + ACTIONS(1431), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146307,219 +147288,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, - [39126] = 17, + [38715] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, - anon_sym_CARET, - ACTIONS(4104), 1, - anon_sym_AMP, - ACTIONS(4106), 1, - anon_sym_PIPE, - ACTIONS(3872), 2, + ACTIONS(4096), 1, anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4120), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1627), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3870), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39204] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(3872), 2, - anon_sym_EQ, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - STATE(1628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3870), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39284] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1629), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3870), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4152), 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_SQUOTE, - [39350] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4168), 1, - anon_sym_COLON_COLON, - STATE(1630), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3367), 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(3365), 23, + ACTIONS(4094), 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, @@ -146530,65 +147353,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_EQ_EQ, - 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, - [39406] = 21, + anon_sym_SQUOTE, + [38801] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4032), 1, - anon_sym_EQ, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4174), 1, + ACTIONS(381), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4176), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1631), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4030), 13, + ACTIONS(379), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -146601,49 +147414,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39492] = 15, + [38883] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4098), 2, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1632), 2, + ACTIONS(4154), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3870), 21, + ACTIONS(4152), 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_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146654,93 +147481,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_SQUOTE, - [39566] = 5, + [38969] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1633), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3644), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4076), 1, + anon_sym_EQ, + ACTIONS(4136), 1, anon_sym_CARET, + ACTIONS(4138), 1, anon_sym_AMP, + ACTIONS(4140), 1, anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3642), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [39620] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1634), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 15, - anon_sym_PLUS, + ACTIONS(4134), 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(3646), 24, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4074), 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, @@ -146751,62 +147546,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_COLON_COLON, - anon_sym_as, - [39674] = 19, + anon_sym_SQUOTE, + [39055] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4084), 1, + anon_sym_EQ, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4040), 2, - anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - STATE(1635), 2, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4038), 15, + ACTIONS(4082), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -146819,20 +147611,16 @@ 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, - [39756] = 6, + [39141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, - anon_sym_COLON_COLON, - STATE(1636), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 15, + ACTIONS(3668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146848,7 +147636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3320), 23, + ACTIONS(3666), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146871,65 +147659,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_DASH_GT, anon_sym_as, - [39812] = 24, + [39195] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(969), 1, - anon_sym_RPAREN, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4150), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4186), 1, - anon_sym_COMMA, - STATE(3070), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1637), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3950), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146940,15 +147727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39904] = 5, + [39283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1638), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146964,7 +147751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1399), 24, + ACTIONS(3676), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146987,19 +147774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [39958] = 6, + [39337] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(4214), 1, anon_sym_COLON_COLON, - STATE(1639), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147015,7 +147802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(3429), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147039,37 +147826,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40014] = 5, + [39393] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1385), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(943), 1, + anon_sym_RBRACK, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4216), 1, + anon_sym_COMMA, + STATE(2884), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1383), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147080,23 +147894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [40068] = 5, + [39485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(3686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147112,7 +147918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1403), 24, + ACTIONS(3684), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147135,17 +147941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [40122] = 5, + [39539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(1389), 15, + ACTIONS(3600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147161,7 +147967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1387), 24, + ACTIONS(3598), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147184,39 +147990,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [40176] = 5, + [39593] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1411), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(949), 1, + anon_sym_RPAREN, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4218), 1, + anon_sym_COMMA, + STATE(2918), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1409), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1647), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147227,27 +148060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [40230] = 7, + [39685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, - anon_sym_LPAREN, - STATE(1834), 1, - sym_arguments, - STATE(1644), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3612), 15, + ACTIONS(3604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147263,7 +148084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3608), 22, + ACTIONS(3602), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147285,23 +148107,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40288] = 6, + [39739] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4192), 1, - anon_sym_COLON_COLON, - STATE(1645), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, - anon_sym_PLUS, + ACTIONS(4134), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -147310,13 +148140,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(1477), 23, + ACTIONS(3902), 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, @@ -147335,57 +148162,106 @@ 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, - [40344] = 19, + anon_sym_SQUOTE, + [39803] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(393), 2, + ACTIONS(4150), 1, anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - STATE(1646), 2, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4002), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(391), 15, + ACTIONS(4148), 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, + [39891] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4220), 1, + anon_sym_DASH_GT, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3608), 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(3606), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147396,63 +148272,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_SQUOTE, - [40426] = 21, + anon_sym_as, + [39947] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, - anon_sym_PIPE, - ACTIONS(4108), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4174), 1, - anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4176), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1647), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 13, + ACTIONS(3904), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3902), 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, @@ -147463,61 +148330,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [40512] = 21, + [40019] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4056), 1, - anon_sym_EQ, - ACTIONS(4102), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4174), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4222), 1, + anon_sym_COMMA, + STATE(3018), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4176), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147528,61 +148405,37 @@ 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, - [40598] = 21, + [40111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4060), 1, - anon_sym_EQ, - ACTIONS(4102), 1, + STATE(1654), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1385), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4108), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4174), 1, - anon_sym_DOT_DOT, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4176), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4058), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1383), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147593,63 +148446,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [40684] = 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, + anon_sym_else, + [40165] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4174), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4176), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1650), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4100), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4224), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147660,64 +148520,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40772] = 24, + [40253] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(3904), 2, anon_sym_EQ, - ACTIONS(4128), 1, anon_sym_DOT_DOT, - ACTIONS(4194), 1, - anon_sym_RPAREN, - ACTIONS(4196), 1, - anon_sym_COMMA, - STATE(2837), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1651), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(3902), 17, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147728,64 +148578,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40864] = 24, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40331] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(3904), 2, anon_sym_EQ, - ACTIONS(4128), 1, anon_sym_DOT_DOT, - ACTIONS(4198), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1652), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(3902), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147796,64 +148640,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40956] = 24, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40411] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RPAREN, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4214), 1, + anon_sym_COLON_COLON, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3443), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4200), 1, - anon_sym_COMMA, - STATE(2878), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3441), 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, @@ -147864,64 +148686,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41048] = 24, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40467] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(3946), 1, + anon_sym_COLON_COLON, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3342), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4202), 1, - anon_sym_RPAREN, - ACTIONS(4204), 1, - anon_sym_COMMA, - STATE(2813), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3340), 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, @@ -147932,62 +148736,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41140] = 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, + [40523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4226), 1, + anon_sym_DASH_GT, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3614), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1655), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4206), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3612), 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, @@ -147998,62 +148786,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41228] = 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, + [40579] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, - anon_sym_EQ, - ACTIONS(4174), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4176), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1656), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4100), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(4086), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148064,48 +148857,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41316] = 18, + anon_sym_SQUOTE, + [40665] = 18, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, + ACTIONS(4228), 1, sym_identifier, - ACTIONS(4210), 1, + ACTIONS(4230), 1, anon_sym_LBRACE, - ACTIONS(4212), 1, + ACTIONS(4232), 1, anon_sym_RBRACE, - ACTIONS(4214), 1, + ACTIONS(4234), 1, anon_sym_STAR, - ACTIONS(4218), 1, + ACTIONS(4238), 1, anon_sym_COMMA, - ACTIONS(4220), 1, + ACTIONS(4240), 1, anon_sym_COLON_COLON, - ACTIONS(4224), 1, + ACTIONS(4244), 1, sym_metavariable, - STATE(2485), 1, + STATE(2544), 1, sym_scoped_identifier, - STATE(3096), 1, + STATE(3080), 1, sym__use_clause, - STATE(3412), 1, + STATE(3540), 1, sym_bracketed_type, - STATE(3537), 1, + STATE(3687), 1, sym_generic_type_with_turbofish, - STATE(1657), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(4222), 3, + ACTIONS(4242), 3, sym_self, sym_super, sym_crate, - STATE(2965), 4, + STATE(2984), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4216), 20, + ACTIONS(4236), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -148126,130 +148920,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [41396] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4020), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1658), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4226), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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, - [41484] = 24, + [40745] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(923), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4142), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4150), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4228), 1, - anon_sym_COMMA, - STATE(2825), 1, - aux_sym_arguments_repeat1, - ACTIONS(4002), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1659), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3852), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148260,17 +148986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41576] = 6, + [40833] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4230), 1, - anon_sym_COLON_COLON, - STATE(1660), 2, + ACTIONS(4246), 1, + anon_sym_DASH_GT, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3367), 15, + ACTIONS(3620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148286,7 +149012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3365), 23, + ACTIONS(3618), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148310,37 +149036,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41632] = 6, + [40889] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1661), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3367), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4136), 1, anon_sym_CARET, + ACTIONS(4138), 1, anon_sym_AMP, + ACTIONS(4140), 1, anon_sym_PIPE, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3904), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3365), 23, + ACTIONS(3902), 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, @@ -148359,61 +149094,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_as, - [41688] = 21, + anon_sym_SQUOTE, + [40963] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4024), 1, - anon_sym_EQ, - ACTIONS(4102), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4174), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4248), 1, + anon_sym_RPAREN, + ACTIONS(4250), 1, + anon_sym_COMMA, + STATE(2972), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4176), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1662), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4118), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4022), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148424,61 +149163,173 @@ 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, - [41774] = 21, + [41055] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4032), 1, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4238), 1, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4252), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [41143] = 24, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1001), 1, + anon_sym_RBRACK, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4234), 2, + ACTIONS(4254), 1, + anon_sym_COMMA, + STATE(3025), 1, + aux_sym_arguments_repeat1, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1663), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4030), 12, + ACTIONS(4052), 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, + [41235] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4256), 1, + anon_sym_COLON_COLON, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 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(3425), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148489,15 +149340,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41859] = 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, + [41291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3758), 15, + ACTIONS(3554), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148513,7 +149371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3756), 23, + ACTIONS(3552), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148536,16 +149394,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, - [41912] = 5, + [41345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1665), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3268), 15, + ACTIONS(3558), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148561,7 +149420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3270), 23, + ACTIONS(3556), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148584,16 +149443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [41965] = 5, + [41399] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1666), 2, + ACTIONS(4258), 1, + anon_sym_COLON_COLON, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148609,7 +149471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3816), 23, + ACTIONS(1431), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148633,15 +149495,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42018] = 5, + [41455] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(4134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3904), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3902), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [41525] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4260), 1, + anon_sym_LPAREN, + STATE(1814), 1, + sym_arguments, + STATE(1674), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148657,8 +149580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, - anon_sym_LPAREN, + ACTIONS(3704), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148681,60 +149603,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42071] = 21, + [41583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_EQ, - ACTIONS(4238), 1, + ACTIONS(4214), 1, + anon_sym_COLON_COLON, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4240), 1, anon_sym_AMP, - ACTIONS(4242), 1, anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_AMP_AMP, - ACTIONS(4246), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, - anon_sym_DOT_DOT, - ACTIONS(4234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4050), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3425), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148745,15 +149646,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42156] = 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, + [41639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(1397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148769,7 +149677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 23, + ACTIONS(1395), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148793,15 +149701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42209] = 5, + anon_sym_else, + [41693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(1415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148817,7 +149726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(1413), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148841,15 +149750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42262] = 5, + anon_sym_else, + [41747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1671), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3830), 15, + ACTIONS(1393), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148865,7 +149775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3828), 23, + ACTIONS(1391), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148889,15 +149799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42315] = 5, + anon_sym_else, + [41801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3411), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148908,12 +149819,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(3952), 23, + ACTIONS(3409), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148928,24 +149841,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42368] = 5, + anon_sym_LT2, + [41855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(3628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148961,7 +149873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3696), 23, + ACTIONS(3626), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148984,16 +149896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [42421] = 5, + [41909] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1674), 2, + ACTIONS(4262), 1, + anon_sym_DASH_GT, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3712), 15, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149009,7 +149924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3710), 23, + ACTIONS(3630), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149033,23 +149948,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42474] = 9, + [41965] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(4264), 1, + ACTIONS(3906), 1, anon_sym_as, - STATE(1675), 2, + ACTIONS(4136), 1, + anon_sym_CARET, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP_AMP, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4080), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4154), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 14, + ACTIONS(4134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4078), 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, + [42047] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149063,10 +150033,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(3870), 20, + ACTIONS(1387), 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, @@ -149085,15 +150058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42535] = 5, + anon_sym_as, + anon_sym_else, + [42101] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, + ACTIONS(4264), 1, + anon_sym_DASH_GT, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149109,7 +150086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 23, + ACTIONS(3636), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149133,61 +150110,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42588] = 22, + [42157] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4266), 1, + anon_sym_DASH_GT, + STATE(1685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3644), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4240), 1, anon_sym_AMP, - ACTIONS(4242), 1, anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_AMP_AMP, - ACTIONS(4246), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, - anon_sym_DOT_DOT, - ACTIONS(4268), 1, - anon_sym_EQ, - ACTIONS(3776), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3642), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1677), 2, + anon_sym_as, + [42213] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4214), 1, + anon_sym_COLON_COLON, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(3451), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4266), 10, + 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(3449), 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, @@ -149198,60 +150203,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42675] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42269] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4110), 1, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4122), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4270), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4118), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149262,15 +150276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42760] = 5, + [42358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1679), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149286,7 +150300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3968), 23, + ACTIONS(3898), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149310,37 +150324,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42813] = 5, + [42411] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3974), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3972), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4270), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149351,22 +150389,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, - [42866] = 5, + [42498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149382,7 +150413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 23, + ACTIONS(4006), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149406,37 +150437,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42919] = 5, + [42551] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3776), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4272), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149447,27 +150502,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_as, - [42972] = 5, + [42638] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, - anon_sym_PLUS, + ACTIONS(4274), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149476,13 +150533,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(3846), 23, + ACTIONS(3902), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149501,36 +150555,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_as, - [43025] = 5, + [42701] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4278), 1, + anon_sym_AMP, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, - anon_sym_PLUS, + ACTIONS(4274), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 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(3820), 23, + ACTIONS(3902), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149549,36 +150611,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43078] = 5, + [42770] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, - anon_sym_PLUS, + ACTIONS(4274), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 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(3824), 23, + ACTIONS(3902), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149597,36 +150666,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43131] = 5, + [42837] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4278), 1, + anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, - anon_sym_PLUS, + ACTIONS(4274), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3904), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3804), 23, + ACTIONS(3902), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149645,36 +150723,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43184] = 5, + [42908] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1687), 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, - anon_sym_CARET, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4278), 1, anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, + ACTIONS(3904), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3808), 23, + STATE(1696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4286), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3902), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149687,43 +150781,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, - [43237] = 5, + [42985] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3852), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4278), 1, anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_AMP_AMP, + ACTIONS(3904), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3850), 23, + STATE(1697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4286), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3902), 15, 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, @@ -149735,36 +150842,32 @@ 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, - [43290] = 10, + [43064] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - STATE(1689), 2, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3904), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149774,7 +150877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3870), 20, + ACTIONS(3902), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -149795,46 +150898,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43353] = 13, + [43129] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4240), 1, + ACTIONS(4092), 1, + anon_sym_EQ, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4234), 2, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_AMP_AMP, + ACTIONS(4292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1690), 2, + ACTIONS(4288), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3870), 20, + ACTIONS(4286), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4090), 12, 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, @@ -149845,68 +150962,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, - [43422] = 23, + [43214] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4272), 1, - anon_sym_SEMI, - ACTIONS(4274), 1, - anon_sym_else, - ACTIONS(4002), 2, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1691), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4086), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149917,41 +151026,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43511] = 12, + [43299] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4234), 2, + ACTIONS(4278), 1, + anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, + anon_sym_PIPE, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1692), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3904), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3870), 20, + ACTIONS(3902), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -149972,15 +151084,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43578] = 5, + [43372] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4278), 1, + anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_AMP_AMP, + ACTIONS(4292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4080), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4288), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 15, + ACTIONS(4274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4286), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4078), 14, + 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, + [43453] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149996,7 +151170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1585), 23, + ACTIONS(1431), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150020,15 +151194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43631] = 5, + [43506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3722), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150044,7 +151218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 23, + ACTIONS(3720), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150068,15 +151242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43684] = 5, + [43559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1695), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(3726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150092,7 +151266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 23, + ACTIONS(3724), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150116,15 +151290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43737] = 5, + [43612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1696), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150140,7 +151314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 23, + ACTIONS(3748), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150164,47 +151338,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43790] = 14, + [43665] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4234), 2, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4298), 1, + anon_sym_SEMI, + ACTIONS(4300), 1, + anon_sym_else, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1697), 2, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3870), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150215,21 +151404,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, - [43861] = 5, + [43754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150245,7 +151428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1445), 23, + ACTIONS(3740), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150269,15 +151452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43914] = 5, + [43807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(1451), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150293,7 +151476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1449), 23, + ACTIONS(3740), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150317,15 +151500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43967] = 5, + [43860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150341,7 +151524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 23, + ACTIONS(3740), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150365,52 +151548,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44020] = 17, + [43913] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4238), 1, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3774), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4240), 1, anon_sym_AMP, - ACTIONS(4242), 1, anon_sym_PIPE, - ACTIONS(3872), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1701), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3870), 16, + anon_sym_DOT_DOT, + ACTIONS(3770), 21, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150423,17 +151592,28 @@ 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, - [44097] = 5, + anon_sym_as, + [43972] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1702), 2, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 15, + ACTIONS(3818), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150447,13 +151627,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(3876), 23, + ACTIONS(3816), 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, @@ -150473,55 +151650,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44150] = 18, + [44031] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(3872), 2, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4234), 2, + ACTIONS(4308), 1, + anon_sym_RBRACE, + ACTIONS(4310), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - STATE(1703), 2, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3870), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150532,32 +151716,85 @@ 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, - [44229] = 11, + [44120] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4234), 2, + ACTIONS(4278), 1, + anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_AMP_AMP, + ACTIONS(4292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4314), 1, + anon_sym_EQ, + ACTIONS(3950), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1704), 2, + ACTIONS(4280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4288), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 9, + ACTIONS(4286), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4312), 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, + [44207] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3850), 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, @@ -150566,10 +151803,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(3870), 20, + ACTIONS(3848), 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, @@ -150588,60 +151828,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44294] = 21, + anon_sym_as, + [44260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4024), 1, - anon_sym_EQ, - ACTIONS(4238), 1, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3826), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4240), 1, anon_sym_AMP, - ACTIONS(4242), 1, anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_AMP_AMP, - ACTIONS(4246), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, - anon_sym_DOT_DOT, - ACTIONS(4234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1705), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4022), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3824), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150652,15 +151870,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44379] = 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, + [44313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(3834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150676,7 +151901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3884), 23, + ACTIONS(3832), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150700,61 +151925,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44432] = 22, + [44366] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(3940), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4316), 1, + anon_sym_SEMI, + ACTIONS(4318), 1, + anon_sym_else, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1707), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150765,15 +151991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44519] = 5, + [44455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 15, + ACTIONS(3431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150789,7 +152015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 23, + ACTIONS(3429), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150813,15 +152039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44572] = 5, + [44508] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150837,7 +152063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 23, + ACTIONS(3884), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150861,60 +152087,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44625] = 21, + [44561] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4052), 1, - anon_sym_EQ, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(4264), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4286), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4288), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4276), 2, + ACTIONS(4320), 1, + anon_sym_RBRACE, + ACTIONS(4322), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4050), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150925,15 +152153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44710] = 5, + [44650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150949,7 +152177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 23, + ACTIONS(3836), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150973,37 +152201,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44763] = 5, + [44703] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1712), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1419), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4324), 1, + anon_sym_RPAREN, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1417), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151014,22 +152267,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, - [44816] = 5, + [44792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 15, + ACTIONS(3842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151045,7 +152291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3768), 23, + ACTIONS(3840), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151069,37 +152315,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44869] = 5, + [44845] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4332), 1, anon_sym_CARET, + ACTIONS(4334), 1, anon_sym_AMP, + ACTIONS(4336), 1, anon_sym_PIPE, + ACTIONS(4338), 1, + anon_sym_AMP_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(381), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1485), 23, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4330), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4344), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(379), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151110,68 +152375,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, - [44922] = 22, + [44926] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4150), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4156), 1, anon_sym_DOT_DOT, - ACTIONS(3776), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4158), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1715), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4350), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151182,15 +152441,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45009] = 5, + [45011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3854), 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(3852), 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, + [45064] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151206,7 +152513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 23, + ACTIONS(3916), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151230,15 +152537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45062] = 5, + [45117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151254,7 +152561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 23, + ACTIONS(3920), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151278,29 +152585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45115] = 10, + [45170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - STATE(1718), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(3926), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -151309,10 +152607,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(3870), 20, + ACTIONS(3924), 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, @@ -151331,44 +152632,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45178] = 13, + anon_sym_as, + [45223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4282), 1, - anon_sym_AMP, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1719), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(3930), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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(3870), 20, + ACTIONS(3928), 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, @@ -151387,43 +152680,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45247] = 12, + anon_sym_as, + [45276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1720), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(3934), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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(3870), 20, + ACTIONS(3932), 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, @@ -151442,45 +152728,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45314] = 14, + anon_sym_as, + [45329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, - anon_sym_CARET, - ACTIONS(4282), 1, - anon_sym_AMP, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1721), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(3938), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 20, + ACTIONS(3936), 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, @@ -151499,52 +152776,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45385] = 17, + anon_sym_as, + [45382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3952), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4282), 1, anon_sym_AMP, - ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(3872), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1722), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4278), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3870), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3950), 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, @@ -151557,56 +152818,43 @@ 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, - [45462] = 18, + anon_sym_as, + [45435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + STATE(1735), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4282), 1, anon_sym_AMP, - ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4286), 1, - anon_sym_AMP_AMP, - ACTIONS(3872), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4278), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3870), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1431), 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, @@ -151618,32 +152866,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45541] = 11, + anon_sym_as, + [45488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1724), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(3790), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -151652,10 +152895,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(3870), 20, + ACTIONS(3788), 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, @@ -151674,60 +152920,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45606] = 21, + anon_sym_as, + [45541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4024), 1, - anon_sym_EQ, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + STATE(1737), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3794), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4282), 1, anon_sym_AMP, - ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4286), 1, - anon_sym_AMP_AMP, - ACTIONS(4288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, - anon_sym_DOT_DOT, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1725), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4278), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4022), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3792), 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, @@ -151738,60 +152962,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45691] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4032), 1, - anon_sym_EQ, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3798), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4282), 1, anon_sym_AMP, - ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4286), 1, - anon_sym_AMP_AMP, - ACTIONS(4288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, - anon_sym_DOT_DOT, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1726), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4278), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4030), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3796), 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, @@ -151802,46 +153010,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45776] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, - anon_sym_CARET, - ACTIONS(4282), 1, - anon_sym_AMP, - ACTIONS(4284), 1, - anon_sym_PIPE, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1727), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(1429), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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(3870), 20, + ACTIONS(1431), 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, @@ -151860,56 +153064,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45849] = 19, + anon_sym_as, + [45700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3858), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4282), 1, anon_sym_AMP, - ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4286), 1, - anon_sym_AMP_AMP, - ACTIONS(4288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4040), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1728), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4278), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4038), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3856), 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, @@ -151920,17 +153106,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, - [45930] = 5, + anon_sym_as, + [45753] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151946,7 +153137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 23, + ACTIONS(3860), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151970,15 +153161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45983] = 5, + [45806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151994,7 +153185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3924), 23, + ACTIONS(3908), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152018,15 +153209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46036] = 5, + [45859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152042,7 +153233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3932), 23, + ACTIONS(3912), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152066,15 +153257,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46089] = 5, + [45912] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4332), 1, + anon_sym_CARET, + ACTIONS(4334), 1, + anon_sym_AMP, + ACTIONS(4336), 1, + anon_sym_PIPE, + ACTIONS(4338), 1, + anon_sym_AMP_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, + anon_sym_DOT_DOT, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4346), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4354), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(4330), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4344), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45997] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1583), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152090,7 +153345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3936), 23, + ACTIONS(1585), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152114,46 +153369,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46142] = 15, + [46050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4238), 1, - anon_sym_CARET, - ACTIONS(4240), 1, - anon_sym_AMP, - ACTIONS(4242), 1, - anon_sym_PIPE, - ACTIONS(4234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1733), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(1479), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3872), 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(3870), 20, + ACTIONS(1477), 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, @@ -152172,15 +153416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46215] = 5, + anon_sym_as, + [46103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(1495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152196,7 +153441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 23, + ACTIONS(1493), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152220,15 +153465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46268] = 5, + [46156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152244,7 +153489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(1467), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152268,80 +153513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46321] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(3812), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4020), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1736), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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, - [46408] = 5, + [46209] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(1531), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152357,7 +153537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 23, + ACTIONS(1529), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152381,15 +153561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46461] = 5, + [46262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152405,7 +153585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 23, + ACTIONS(1513), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152429,15 +153609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46514] = 5, + [46315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152453,7 +153633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3684), 23, + ACTIONS(3872), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152477,40 +153657,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46567] = 8, + [46368] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - STATE(1740), 2, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4002), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 14, - anon_sym_PLUS, + ACTIONS(4038), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [46455] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_SEMI, + ACTIONS(4358), 1, + anon_sym_else, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3928), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152521,22 +153788,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, - [46626] = 5, + [46544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(3870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152552,7 +153812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(3868), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152576,15 +153836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46679] = 5, + [46597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1742), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152600,7 +153860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 23, + ACTIONS(1441), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152624,37 +153884,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46732] = 5, + [46650] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1499), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4096), 1, + anon_sym_EQ, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4332), 1, anon_sym_CARET, + ACTIONS(4334), 1, anon_sym_AMP, + ACTIONS(4336), 1, anon_sym_PIPE, + ACTIONS(4338), 1, + anon_sym_AMP_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, + anon_sym_DOT_DOT, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1497), 23, + ACTIONS(4354), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4330), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4344), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4094), 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, @@ -152665,22 +153948,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, - [46785] = 5, + [46735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(3738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152696,7 +153972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 23, + ACTIONS(3736), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152720,15 +153996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46838] = 5, + [46788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(1423), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152744,7 +154020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 23, + ACTIONS(1421), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152768,37 +154044,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46891] = 5, + [46841] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1746), 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, + ACTIONS(1059), 1, + anon_sym_RPAREN, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1437), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152809,22 +154110,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, - [46944] = 5, + [46930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, + ACTIONS(1527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152840,7 +154134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(991), 23, + ACTIONS(1525), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152864,37 +154158,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46997] = 5, + [46983] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1748), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1013), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(3852), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1015), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152905,22 +154223,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, - [47050] = 5, + [47070] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152936,7 +154247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 23, + ACTIONS(1433), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152960,20 +154271,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47103] = 5, + [47123] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4348), 1, + anon_sym_as, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(985), 15, - anon_sym_PLUS, + ACTIONS(4330), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152982,13 +154302,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(987), 23, + ACTIONS(3902), 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, @@ -153007,62 +154324,46 @@ 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, - [47156] = 22, + [47186] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, - anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4284), 1, - anon_sym_PIPE, - ACTIONS(4286), 1, - anon_sym_AMP_AMP, - ACTIONS(4288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, - anon_sym_DOT_DOT, - ACTIONS(4302), 1, - anon_sym_EQ, - ACTIONS(3940), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4276), 2, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4298), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1751), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4300), 10, + ACTIONS(3904), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3902), 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, @@ -153073,35 +154374,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47243] = 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, + [47255] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, - anon_sym_PLUS, + ACTIONS(4330), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 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(921), 23, + ACTIONS(3902), 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, @@ -153120,36 +154435,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47296] = 5, + [47322] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4332), 1, + anon_sym_CARET, + ACTIONS(4334), 1, + anon_sym_AMP, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, - anon_sym_PLUS, + ACTIONS(4330), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3904), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 23, + ACTIONS(3902), 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, @@ -153168,61 +154492,54 @@ 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, - [47349] = 21, + [47393] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4104), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4106), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(3904), 2, anon_sym_EQ, - ACTIONS(4122), 1, anon_sym_DOT_DOT, - ACTIONS(4098), 2, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4112), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1754), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4304), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4118), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 10, + ACTIONS(3902), 16, + 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, @@ -153233,101 +154550,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47434] = 22, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [47470] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4286), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, - anon_sym_DOT_DOT, - ACTIONS(4302), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(3904), 2, anon_sym_EQ, - ACTIONS(3776), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4276), 2, + anon_sym_DOT_DOT, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1755), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4300), 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, - [47521] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1756), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(929), 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(931), 23, + ACTIONS(3902), 15, 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, @@ -153339,27 +154611,32 @@ 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, - [47574] = 5, + [47549] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, - anon_sym_PLUS, + ACTIONS(4330), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3904), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153368,13 +154645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1511), 23, + ACTIONS(3902), 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, @@ -153393,63 +154667,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47627] = 23, + [47614] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(4092), 1, + anon_sym_EQ, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1758), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4090), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153460,61 +154731,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47716] = 22, + [47699] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4286), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4288), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4302), 1, - anon_sym_EQ, - ACTIONS(3812), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4276), 2, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1759), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4300), 10, + ACTIONS(4086), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153525,97 +154795,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47803] = 19, + [47784] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_AMP_AMP, - ACTIONS(4246), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4040), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4234), 2, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1760), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4038), 14, - 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, - [47884] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, - anon_sym_PLUS, + ACTIONS(4330), 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, + ACTIONS(3904), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 23, + ACTIONS(3902), 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, @@ -153634,38 +154853,56 @@ 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, - [47937] = 5, + [47857] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3978), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4332), 1, anon_sym_CARET, + ACTIONS(4334), 1, anon_sym_AMP, + ACTIONS(4336), 1, anon_sym_PIPE, + ACTIONS(4338), 1, + anon_sym_AMP_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4080), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3976), 23, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4330), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4344), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4078), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153676,22 +154913,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, - [47990] = 5, + [47938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1763), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153707,7 +154939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(3728), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153731,15 +154963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48043] = 5, + [47991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1764), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153755,7 +154987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(3732), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153779,15 +155011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48096] = 5, + [48044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(3878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153803,7 +155035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 23, + ACTIONS(3876), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153827,15 +155059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48149] = 5, + [48097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153851,7 +155083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1043), 23, + ACTIONS(1417), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153875,15 +155107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48202] = 5, + [48150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153899,7 +155131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3385), 23, + ACTIONS(1497), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153923,37 +155155,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48255] = 5, + [48203] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3916), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(3950), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3914), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153964,22 +155220,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, - [48308] = 5, + [48290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153995,7 +155244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 23, + ACTIONS(1461), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154019,75 +155268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48361] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - anon_sym_COLON_COLON, - ACTIONS(4224), 1, - sym_metavariable, - ACTIONS(4308), 1, - anon_sym_RBRACE, - STATE(2485), 1, - sym_scoped_identifier, - STATE(3145), 1, - sym__use_clause, - STATE(3412), 1, - sym_bracketed_type, - STATE(3537), 1, - sym_generic_type_with_turbofish, - STATE(1770), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4222), 3, - sym_self, - sym_super, - sym_crate, - STATE(2965), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4216), 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, - [48438] = 5, + [48343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3982), 15, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154103,7 +155292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3980), 23, + ACTIONS(3828), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154127,15 +155316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48491] = 5, + [48396] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154151,7 +155340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3984), 23, + ACTIONS(3940), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154175,15 +155364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48544] = 5, + [48449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3612), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154199,7 +155388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3608), 23, + ACTIONS(1505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154223,15 +155412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48597] = 5, + [48502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154247,7 +155436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 23, + ACTIONS(1509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154271,126 +155460,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48650] = 22, + [48555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4020), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4310), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1775), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(1523), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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, - [48737] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4312), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1521), 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, @@ -154401,15 +155501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48824] = 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, + [48608] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154425,7 +155532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154449,62 +155556,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48877] = 23, + [48661] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4314), 1, - anon_sym_RPAREN, - ACTIONS(4316), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1778), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1485), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154515,15 +155597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48966] = 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, + [48714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154539,7 +155628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3714), 23, + ACTIONS(1517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154563,127 +155652,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49019] = 23, + [48767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4020), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1780), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(993), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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, - [49108] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4116), 1, - anon_sym_EQ, - ACTIONS(4122), 1, - anon_sym_DOT_DOT, - ACTIONS(4320), 1, - anon_sym_AMP_AMP, - ACTIONS(4098), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4124), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4318), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1781), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4114), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(995), 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, @@ -154694,21 +155693,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49195] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - STATE(1782), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3738), 14, + ACTIONS(997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154722,10 +155722,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(3734), 21, + ACTIONS(999), 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, @@ -154745,21 +155748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49254] = 8, + [48873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - STATE(1783), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 14, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154773,10 +155770,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(3784), 21, + ACTIONS(1481), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154796,15 +155796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49313] = 5, + [48926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(1003), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154820,7 +155820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 23, + ACTIONS(1005), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154844,15 +155844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49366] = 5, + [48979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154868,7 +155868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 23, + ACTIONS(3880), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154892,62 +155892,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49419] = 23, + [49032] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4268), 1, - anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_LBRACE, - ACTIONS(4324), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - STATE(1447), 1, - sym_match_block, - ACTIONS(4234), 2, + ACTIONS(4362), 1, + anon_sym_EQ, + ACTIONS(4002), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4326), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4266), 10, + ACTIONS(4360), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154958,15 +155957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49508] = 5, + [49119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(1009), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154982,7 +155981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 23, + ACTIONS(1011), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155006,15 +156005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49561] = 5, + [49172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155030,7 +156029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 23, + ACTIONS(1471), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155054,62 +156053,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49614] = 23, + [49225] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4362), 1, + anon_sym_EQ, + ACTIONS(3852), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4360), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155120,15 +156118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49703] = 5, + [49312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(1017), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155144,7 +156142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3812), 23, + ACTIONS(1019), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155168,61 +156166,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49756] = 22, + [49365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1799), 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, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4328), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1791), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1437), 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, @@ -155233,15 +156207,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49843] = 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, + [49418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155257,7 +156238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(3888), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155281,62 +156262,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49896] = 23, + [49471] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4330), 1, - anon_sym_RBRACE, - ACTIONS(4002), 2, + ACTIONS(4362), 1, + anon_sym_EQ, + ACTIONS(3950), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4360), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155347,62 +156327,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49985] = 23, + [49558] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(4076), 1, + anon_sym_EQ, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 1, - anon_sym_SEMI, - ACTIONS(4334), 1, - anon_sym_else, - ACTIONS(4002), 2, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1794), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4074), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155413,15 +156391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50074] = 5, + [49643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3399), 15, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155437,7 +156415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3397), 23, + ACTIONS(3762), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155461,62 +156439,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50127] = 23, + [49696] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1095), 1, - anon_sym_RPAREN, - ACTIONS(3736), 1, + ACTIONS(4084), 1, + anon_sym_EQ, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4338), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4082), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155527,56 +156503,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50216] = 19, + [49781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1045), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4282), 1, anon_sym_AMP, - ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4286), 1, - anon_sym_AMP_AMP, - ACTIONS(4288), 1, - anon_sym_PIPE_PIPE, - ACTIONS(393), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4276), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4290), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1797), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4278), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(391), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1047), 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, @@ -155587,64 +156544,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, - [50297] = 23, + anon_sym_as, + [49834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4238), 1, + STATE(1806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1049), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4240), 1, anon_sym_AMP, - ACTIONS(4242), 1, anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_AMP_AMP, - ACTIONS(4246), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4268), 1, - anon_sym_EQ, - ACTIONS(4324), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_match_block, - ACTIONS(4234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4326), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1798), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4266), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1051), 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, @@ -155655,61 +156592,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50386] = 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, + [49887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1807), 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(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4340), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1799), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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, @@ -155720,62 +156640,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50473] = 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, + [49940] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4342), 1, + ACTIONS(4364), 1, anon_sym_RPAREN, - ACTIONS(4344), 1, + ACTIONS(4366), 1, anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155786,62 +156713,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50562] = 23, + [50029] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 1, - anon_sym_COMMA, - ACTIONS(4346), 1, - anon_sym_RPAREN, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + ACTIONS(4368), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155852,62 +156778,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50651] = 23, + [50116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, - anon_sym_AMP, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4348), 1, - anon_sym_SEMI, - ACTIONS(4350), 1, - anon_sym_else, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4020), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3896), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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(3894), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155918,62 +156819,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50740] = 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, + [50169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3964), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4352), 1, - anon_sym_SEMI, - ACTIONS(4354), 1, - anon_sym_else, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1803), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3962), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155984,15 +156867,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50829] = 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, + [50222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1804), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156008,7 +156898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 23, + ACTIONS(3958), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156032,62 +156922,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50882] = 23, + [50275] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(4348), 1, anon_sym_as, - ACTIONS(4006), 1, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3904), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + anon_sym_DOT_DOT, + ACTIONS(3902), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + [50336] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(3972), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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(3970), 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, @@ -156098,62 +157015,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50971] = 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, + [50389] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1097), 1, - anon_sym_RPAREN, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 1, + ACTIONS(4370), 1, + anon_sym_RPAREN, + ACTIONS(4372), 1, anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1806), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156164,15 +157088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51060] = 5, + [50478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1807), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(3794), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156188,7 +157112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3792), 23, + ACTIONS(3982), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156212,62 +157136,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51113] = 23, + [50531] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4358), 1, - anon_sym_else, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156278,62 +157202,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51202] = 23, + [50620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3786), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4360), 1, - anon_sym_RBRACE, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3784), 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(1809), 2, + anon_sym_as, + [50673] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4004), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 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(4002), 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, @@ -156344,62 +157291,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51291] = 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, + [50726] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 1, - anon_sym_COMMA, - ACTIONS(4362), 1, - anon_sym_RPAREN, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1810), 2, + ACTIONS(4374), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156410,62 +157363,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51380] = 23, + [50813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4364), 1, - anon_sym_RBRACE, - ACTIONS(4366), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1811), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1431), 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, @@ -156476,60 +157404,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51469] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50866] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_EQ, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(4264), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4280), 1, - anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4278), 1, anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4286), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4288), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, + ACTIONS(4314), 1, + anon_sym_EQ, + ACTIONS(4376), 1, + anon_sym_LBRACE, + ACTIONS(4378), 1, anon_sym_DOT_DOT, + STATE(1482), 1, + sym_match_block, ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, + ACTIONS(4380), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1812), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4312), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156540,60 +157477,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51554] = 21, + [50955] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4060), 1, - anon_sym_EQ, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(4264), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4286), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4288), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4276), 2, + ACTIONS(4382), 1, + anon_sym_SEMI, + ACTIONS(4384), 1, + anon_sym_else, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4058), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156604,62 +157543,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51639] = 23, + [51044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3740), 1, - anon_sym_QMARK, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3806), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4368), 1, - anon_sym_SEMI, - ACTIONS(4370), 1, - anon_sym_else, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1814), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3804), 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, @@ -156670,15 +157584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51728] = 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, + [51097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1815), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156694,7 +157615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 23, + ACTIONS(3808), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156718,15 +157639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51781] = 5, + [51150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156742,7 +157663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3700), 23, + ACTIONS(3812), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156766,62 +157687,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51834] = 23, + [51203] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4374), 1, - anon_sym_else, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(1827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [51292] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4016), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 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(4014), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51345] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3968), 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(3966), 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, @@ -156832,61 +157842,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51923] = 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, + [51398] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(1105), 1, + anon_sym_RPAREN, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4002), 2, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4376), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1818), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156897,63 +157915,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52010] = 5, + [51487] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1819), 2, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_STAR, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + ACTIONS(4244), 1, + sym_metavariable, + ACTIONS(4386), 1, + anon_sym_RBRACE, + STATE(2544), 1, + sym_scoped_identifier, + STATE(3180), 1, + sym__use_clause, + STATE(3540), 1, + sym_bracketed_type, + STATE(3687), 1, + sym_generic_type_with_turbofish, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 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(3832), 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, - [52063] = 5, + ACTIONS(4242), 3, + sym_self, + sym_super, + sym_crate, + STATE(2984), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4236), 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, + [51564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1820), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3774), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156969,7 +157999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3772), 23, + ACTIONS(3974), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156993,62 +158023,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52116] = 23, + [51617] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1821), 2, + ACTIONS(4388), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157059,15 +158088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52205] = 5, + [51704] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157083,7 +158112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 23, + ACTIONS(3978), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157107,56 +158136,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52258] = 19, + [51757] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(393), 2, + ACTIONS(4054), 1, anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4234), 2, + ACTIONS(4390), 1, + anon_sym_SEMI, + ACTIONS(4392), 1, + anon_sym_else, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - STATE(1823), 2, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(391), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157167,62 +158202,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [51846] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52339] = 21, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [51935] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3736), 1, + ACTIONS(1063), 1, + anon_sym_RPAREN, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4234), 2, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 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(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157233,62 +158334,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52424] = 23, + [52024] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4268), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4324), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4378), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_match_block, - ACTIONS(4234), 2, + ACTIONS(4394), 1, + anon_sym_SEMI, + ACTIONS(4396), 1, + anon_sym_else, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4326), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4266), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157299,60 +158400,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52513] = 21, + [52113] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4056), 1, - anon_sym_EQ, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4234), 2, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4398), 1, + anon_sym_RBRACE, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157363,60 +158466,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52598] = 21, + [52202] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4060), 1, - anon_sym_EQ, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4234), 2, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4400), 1, + anon_sym_RPAREN, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4058), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157427,62 +158532,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52683] = 23, + [52291] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4402), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4404), 1, + anon_sym_else, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157493,15 +158598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52772] = 5, + [52380] = 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(3900), 15, + ACTIONS(3746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157517,7 +158622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 23, + ACTIONS(3744), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157541,37 +158646,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52825] = 5, + [52433] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4136), 1, + anon_sym_CARET, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_DOT_DOT, + ACTIONS(4408), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4146), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4154), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4158), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4406), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, - anon_sym_PLUS, + ACTIONS(4134), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4152), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 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, + [52520] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4410), 1, + anon_sym_SEMI, + ACTIONS(4412), 1, + anon_sym_else, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3726), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1844), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157582,22 +158777,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, - [52878] = 5, + [52609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1831), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157613,7 +158801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3744), 23, + ACTIONS(3990), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157637,15 +158825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52931] = 5, + [52662] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1832), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3750), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157661,7 +158849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3748), 23, + ACTIONS(3994), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157685,15 +158873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52984] = 5, + [52715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1833), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3966), 15, + ACTIONS(3822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157709,7 +158897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3964), 23, + ACTIONS(3820), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157733,15 +158921,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53037] = 5, + [52768] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1834), 2, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [52857] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157757,7 +159011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3688), 23, + ACTIONS(3998), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157781,62 +159035,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53090] = 23, + [52910] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3988), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1835), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3986), 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, @@ -157847,15 +159079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53179] = 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, + [52969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 15, + ACTIONS(3427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157871,7 +159110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3948), 23, + ACTIONS(3425), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157895,61 +159134,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53232] = 22, + [53022] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(381), 2, anon_sym_EQ, - ACTIONS(4128), 1, anon_sym_DOT_DOT, - ACTIONS(4002), 2, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4380), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1837), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(379), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157960,62 +159194,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53319] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53103] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4382), 1, - anon_sym_RBRACE, - ACTIONS(4002), 2, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1838), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158026,62 +159260,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53408] = 23, + [53188] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4314), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4378), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_match_block, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4380), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1839), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4312), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158092,62 +159326,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53497] = 23, + [53277] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4076), 1, + anon_sym_EQ, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1840), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4074), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158158,61 +159390,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53586] = 22, + [53362] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, - anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4084), 1, + anon_sym_EQ, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4268), 1, - anon_sym_EQ, - ACTIONS(3812), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4234), 2, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1841), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4266), 10, + ACTIONS(4082), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158223,62 +159454,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53673] = 23, + [53447] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4244), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4268), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4324), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4384), 1, - anon_sym_LBRACE, - STATE(1714), 1, - sym_match_block, - ACTIONS(4234), 2, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4326), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4266), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158289,62 +159520,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53762] = 23, + [53536] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(291), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158355,61 +159586,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53851] = 22, + [53625] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4002), 2, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4386), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1844), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158420,15 +159652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53938] = 5, + [53714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1845), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158444,7 +159676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 23, + ACTIONS(3752), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158468,62 +159700,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53991] = 23, + [53767] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_STAR, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + ACTIONS(4244), 1, + sym_metavariable, + ACTIONS(4416), 1, + anon_sym_RBRACE, + STATE(2544), 1, + sym_scoped_identifier, + STATE(3180), 1, + sym__use_clause, + STATE(3540), 1, + sym_bracketed_type, + STATE(3687), 1, + sym_generic_type_with_turbofish, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4242), 3, + sym_self, + sym_super, + sym_crate, + STATE(2984), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4236), 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, + [53844] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1862), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3760), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3756), 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, + [53897] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(307), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1846), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158534,62 +159874,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54080] = 23, + [53986] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4388), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4390), 1, - anon_sym_else, - ACTIONS(4002), 2, + ACTIONS(4418), 1, + anon_sym_RBRACE, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158600,62 +159940,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54169] = 23, + [54075] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4392), 1, - anon_sym_RBRACE, - ACTIONS(4394), 1, - anon_sym_COMMA, + ACTIONS(4314), 1, + anon_sym_EQ, ACTIONS(4002), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4312), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158666,62 +160005,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54258] = 23, + [54162] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4396), 1, - anon_sym_RBRACE, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158732,37 +160071,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54347] = 5, + [54251] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1850), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1479), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4278), 1, anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_AMP_AMP, + ACTIONS(4292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4314), 1, + anon_sym_EQ, + ACTIONS(4378), 1, + anon_sym_DOT_DOT, + ACTIONS(4420), 1, + anon_sym_LBRACE, + STATE(1760), 1, + sym_match_block, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1477), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4380), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4286), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4312), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158773,44 +160137,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, - [54400] = 5, + [54340] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3754), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3752), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4422), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158821,69 +160202,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, - [54453] = 23, + [54427] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(1225), 1, + anon_sym_RPAREN, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158894,15 +160268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54542] = 5, + [54516] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1853), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158918,7 +160292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 23, + ACTIONS(3766), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158942,62 +160316,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54595] = 23, + [54569] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, + ACTIONS(315), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159008,15 +160382,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54684] = 5, + [54658] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1855), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4278), 1, + anon_sym_AMP, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_AMP_AMP, + ACTIONS(4292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4314), 1, + anon_sym_EQ, + ACTIONS(4378), 1, + anon_sym_DOT_DOT, + ACTIONS(4424), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_match_block, + ACTIONS(4276), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4280), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4288), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4380), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 15, + ACTIONS(4274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4286), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4312), 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, + [54747] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159032,7 +160472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3796), 23, + ACTIONS(3780), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159056,62 +160496,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54737] = 23, + [54800] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1099), 1, - anon_sym_RPAREN, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4426), 1, + anon_sym_RBRACE, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159122,62 +160562,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54826] = 23, + [54889] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + STATE(1875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3802), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4008), 1, anon_sym_AMP, - ACTIONS(4010), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, - anon_sym_DOT_DOT, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1857), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4018), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4034), 10, + anon_sym_DOT_DOT, + ACTIONS(3800), 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, @@ -159188,62 +160606,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54915] = 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, + [54948] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4398), 1, - anon_sym_RBRACE, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159254,62 +160679,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55004] = 23, + [55037] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(321), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159320,62 +160745,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55093] = 23, + [55126] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(323), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159386,40 +160811,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55182] = 8, + [55215] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - STATE(1861), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3958), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, anon_sym_CARET, + ACTIONS(4042), 1, anon_sym_AMP, + ACTIONS(4044), 1, anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4428), 1, + anon_sym_RBRACE, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3956), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159430,69 +160877,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, - [55241] = 23, + [55304] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, + ACTIONS(327), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159503,62 +160943,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55330] = 23, + [55393] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4400), 1, - anon_sym_RBRACE, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 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, + [55482] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3866), 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(3864), 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, @@ -159569,62 +161050,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55419] = 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, + [55535] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, + ACTIONS(331), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159635,62 +161123,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55508] = 23, + [55624] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4430), 1, + anon_sym_RBRACE, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159701,62 +161189,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55597] = 23, + [55713] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, + ACTIONS(335), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159767,62 +161255,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55686] = 23, + [55802] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, + ACTIONS(123), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159833,62 +161321,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55775] = 23, + [55891] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4402), 1, - anon_sym_RBRACE, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159899,62 +161387,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55864] = 23, + [55980] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4432), 1, + anon_sym_RBRACE, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159965,15 +161453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55953] = 5, + [56069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1870), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159989,7 +161477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3722), 23, + ACTIONS(4018), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160013,15 +161501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56006] = 5, + [56122] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1871), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3300), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160037,7 +161525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 23, + ACTIONS(3302), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160061,61 +161549,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56059] = 22, + [56175] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4404), 2, + ACTIONS(4434), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1872), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160126,61 +161614,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56146] = 22, + [56262] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4406), 2, + ACTIONS(4436), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1873), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160191,15 +161679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56233] = 5, + [56349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1874), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3962), 15, + ACTIONS(3451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160215,7 +161703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3960), 23, + ACTIONS(3449), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160239,15 +161727,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56286] = 5, + [56402] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1875), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4438), 1, + anon_sym_RBRACE, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1894), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [56491] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160263,7 +161817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3353), 23, + ACTIONS(1431), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160287,15 +161841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56339] = 5, + [56544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1876), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3367), 15, + ACTIONS(3443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160311,7 +161865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3365), 23, + ACTIONS(3441), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160335,15 +161889,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56392] = 5, + [56597] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1877), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4440), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1897), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [56684] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160359,7 +161978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3800), 23, + ACTIONS(3704), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160383,121 +162002,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56445] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [56737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - anon_sym_COLON_COLON, - ACTIONS(4224), 1, - sym_metavariable, - ACTIONS(4408), 1, - anon_sym_RBRACE, - STATE(2485), 1, - sym_scoped_identifier, - STATE(3145), 1, - sym__use_clause, - STATE(3412), 1, - sym_bracketed_type, - STATE(3537), 1, - sym_generic_type_with_turbofish, - STATE(1878), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4222), 3, - sym_self, - sym_super, - sym_crate, - STATE(2965), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4216), 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, - [56522] = 22, + 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), 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, + [56790] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4238), 1, + ACTIONS(4136), 1, anon_sym_CARET, - ACTIONS(4240), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_AMP_AMP, - ACTIONS(4246), 1, + ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4254), 1, - anon_sym_DOT_DOT, - ACTIONS(4268), 1, + ACTIONS(4150), 1, anon_sym_EQ, - ACTIONS(3940), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4234), 2, + ACTIONS(4156), 1, + anon_sym_DOT_DOT, + ACTIONS(4132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4248), 2, + ACTIONS(4146), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4252), 2, + ACTIONS(4154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4256), 2, + ACTIONS(4158), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 3, + ACTIONS(4134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4250), 4, + ACTIONS(4442), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4152), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4266), 10, + ACTIONS(4148), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160508,60 +162114,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56609] = 21, + [56875] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4258), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(4264), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4286), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4288), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4296), 1, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4276), 2, + ACTIONS(4268), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4298), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4056), 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(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160572,118 +162180,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56694] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - anon_sym_COLON_COLON, - ACTIONS(4224), 1, - sym_metavariable, - STATE(2485), 1, - sym_scoped_identifier, - STATE(3409), 1, - sym__use_clause, - STATE(3412), 1, - sym_bracketed_type, - STATE(3537), 1, - sym_generic_type_with_turbofish, - STATE(1881), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4222), 3, - sym_self, - sym_super, - sym_crate, - STATE(2965), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4216), 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, - [56768] = 22, + [56964] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4096), 1, + anon_sym_EQ, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4094), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160694,60 +162244,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56854] = 22, + [57049] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, - anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4282), 1, + anon_sym_CARET, + ACTIONS(4284), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4290), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4292), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, - anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4410), 1, - anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4314), 1, + anon_sym_EQ, + ACTIONS(3852), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4276), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4280), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4286), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4312), 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, + [57136] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1904), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4012), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4010), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160758,60 +162350,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56940] = 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, + [57189] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4412), 1, + ACTIONS(4444), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160822,118 +162421,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57026] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [57275] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - anon_sym_COLON_COLON, - ACTIONS(4224), 1, - sym_metavariable, - STATE(2485), 1, - sym_scoped_identifier, - STATE(3412), 1, - sym_bracketed_type, - STATE(3512), 1, - sym__use_clause, - STATE(3537), 1, - sym_generic_type_with_turbofish, - STATE(1885), 2, + ACTIONS(3772), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_QMARK, + ACTIONS(3778), 1, + anon_sym_DOT, + ACTIONS(3906), 1, + anon_sym_as, + ACTIONS(4040), 1, + anon_sym_CARET, + ACTIONS(4042), 1, + anon_sym_AMP, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4054), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_DOT_DOT, + ACTIONS(4446), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4050), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4058), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4168), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4222), 3, - sym_self, - sym_super, - sym_crate, - STATE(2965), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4216), 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, - [57100] = 22, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [57361] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4414), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4448), 1, + anon_sym_RBRACK, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1886), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160944,59 +162549,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57186] = 21, + [57447] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(4264), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4288), 1, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4302), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4416), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4276), 2, + ACTIONS(4450), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4418), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4300), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161007,60 +162613,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57270] = 22, + [57533] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4306), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161071,60 +162677,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57356] = 22, + [57619] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4420), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4454), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161135,60 +162741,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57442] = 22, + [57705] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4422), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4456), 1, + anon_sym_RBRACK, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161199,60 +162805,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57528] = 22, + [57791] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4424), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4458), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1891), 2, + STATE(1912), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4056), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 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, + [57877] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_STAR, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + ACTIONS(4244), 1, + sym_metavariable, + STATE(2544), 1, + sym_scoped_identifier, + STATE(3538), 1, + sym__use_clause, + STATE(3540), 1, + sym_bracketed_type, + STATE(3687), 1, + sym_generic_type_with_turbofish, + STATE(1913), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4242), 3, + sym_self, + sym_super, + sym_crate, + STATE(2984), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4236), 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, + [57951] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4302), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_QMARK, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4332), 1, + anon_sym_CARET, + ACTIONS(4334), 1, + anon_sym_AMP, + ACTIONS(4336), 1, + anon_sym_PIPE, + ACTIONS(4340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4362), 1, + anon_sym_EQ, + ACTIONS(4460), 1, + anon_sym_DOT_DOT, + ACTIONS(4328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4346), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4350), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4360), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161263,60 +162990,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57614] = 22, + [58035] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4426), 1, - anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161327,60 +163054,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57700] = 22, + [58121] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4428), 1, + ACTIONS(4464), 1, anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161391,60 +163118,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57786] = 22, + [58207] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_STAR, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + ACTIONS(4244), 1, + sym_metavariable, + STATE(2544), 1, + sym_scoped_identifier, + STATE(3540), 1, + sym_bracketed_type, + STATE(3683), 1, + sym__use_clause, + STATE(3687), 1, + sym_generic_type_with_turbofish, + STATE(1917), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4242), 3, + sym_self, + sym_super, + sym_crate, + STATE(2984), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4236), 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, + [58281] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4430), 1, + ACTIONS(4466), 1, anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161455,60 +163240,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57872] = 22, + [58367] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4432), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4468), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161519,60 +163304,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57958] = 22, + [58453] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_STAR, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + ACTIONS(4244), 1, + sym_metavariable, + STATE(2544), 1, + sym_scoped_identifier, + STATE(3180), 1, + sym__use_clause, + STATE(3540), 1, + sym_bracketed_type, + STATE(3687), 1, + sym_generic_type_with_turbofish, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4242), 3, + sym_self, + sym_super, + sym_crate, + STATE(2984), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4236), 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, + [58527] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4434), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4470), 1, + anon_sym_RBRACK, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161583,60 +163426,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58044] = 22, + [58613] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_STAR, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + ACTIONS(4244), 1, + sym_metavariable, + STATE(2544), 1, + sym_scoped_identifier, + STATE(3458), 1, + sym__use_clause, + STATE(3540), 1, + sym_bracketed_type, + STATE(3687), 1, + sym_generic_type_with_turbofish, + STATE(1922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4242), 3, + sym_self, + sym_super, + sym_crate, + STATE(2984), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4236), 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, + [58687] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4436), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4472), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161647,60 +163548,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58130] = 22, + [58773] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4438), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4474), 1, + anon_sym_RBRACK, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161711,60 +163612,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58216] = 22, + [58859] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4440), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4476), 1, + anon_sym_RBRACK, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1899), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161775,60 +163676,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58302] = 22, + [58945] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_STAR, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + ACTIONS(4244), 1, + sym_metavariable, + STATE(2544), 1, + sym_scoped_identifier, + STATE(3540), 1, + sym_bracketed_type, + STATE(3687), 1, + sym_generic_type_with_turbofish, + STATE(3736), 1, + sym__use_clause, + STATE(1926), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4242), 3, + sym_self, + sym_super, + sym_crate, + STATE(2984), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4236), 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, + [59019] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4442), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4478), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1900), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161839,59 +163798,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58388] = 21, + [59105] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(4264), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4288), 1, + ACTIONS(4046), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4302), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4416), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4276), 2, + ACTIONS(4480), 1, + anon_sym_RBRACK, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4304), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4418), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1901), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4300), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161902,60 +163862,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58472] = 22, + [59191] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4444), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1902), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161966,60 +163926,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58558] = 22, + [59277] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4446), 1, - anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4482), 1, + anon_sym_RBRACK, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1903), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162030,60 +163990,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58644] = 22, + [59363] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4448), 1, + ACTIONS(4484), 1, anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162094,118 +164054,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58730] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59449] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - anon_sym_COLON_COLON, - ACTIONS(4224), 1, - sym_metavariable, - STATE(2485), 1, - sym_scoped_identifier, - STATE(3412), 1, - sym_bracketed_type, - STATE(3441), 1, - sym__use_clause, - STATE(3537), 1, - sym_generic_type_with_turbofish, - STATE(1905), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4222), 3, - sym_self, - sym_super, - sym_crate, - STATE(2965), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4216), 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, - [58804] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3874), 1, - anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4012), 1, - anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4362), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4406), 1, + anon_sym_EQ_GT, + ACTIONS(4460), 1, anon_sym_DOT_DOT, - ACTIONS(4450), 1, - anon_sym_COMMA, - ACTIONS(4002), 2, + ACTIONS(4486), 1, + anon_sym_AMP_AMP, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1906), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4360), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162216,118 +164118,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58890] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - anon_sym_COLON_COLON, - ACTIONS(4224), 1, - sym_metavariable, - STATE(2485), 1, - sym_scoped_identifier, - STATE(3145), 1, - sym__use_clause, - STATE(3412), 1, - sym_bracketed_type, - STATE(3537), 1, - sym_generic_type_with_turbofish, - STATE(1907), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4222), 3, - sym_self, - sym_super, - sym_crate, - STATE(2965), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4216), 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, - [58964] = 22, + [59535] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4452), 1, - anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4488), 1, + anon_sym_COMMA, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1908), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162338,118 +164182,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59050] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59621] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - anon_sym_COLON_COLON, - ACTIONS(4224), 1, - sym_metavariable, - STATE(2485), 1, - sym_scoped_identifier, - STATE(3412), 1, - sym_bracketed_type, - STATE(3506), 1, - sym__use_clause, - STATE(3537), 1, - sym_generic_type_with_turbofish, - STATE(1909), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4222), 3, - sym_self, - sym_super, - sym_crate, - STATE(2965), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4216), 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, - [59124] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4454), 1, + ACTIONS(4490), 1, anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162460,60 +164246,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59210] = 22, + [59707] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4456), 1, - anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4492), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1911), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162524,60 +164310,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59296] = 22, + [59793] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4458), 1, - anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4494), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1912), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162588,60 +164374,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59382] = 22, + [59879] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, - anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4496), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1913), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162652,60 +164438,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59468] = 22, + [59965] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4462), 1, - anon_sym_RBRACK, - ACTIONS(4002), 2, + ACTIONS(4498), 1, + anon_sym_SEMI, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1914), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162716,60 +164502,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59554] = 22, + [60051] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4464), 1, + ACTIONS(4500), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162780,60 +164566,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59640] = 22, + [60137] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, + ACTIONS(4304), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(4264), 1, - anon_sym_as, - ACTIONS(4280), 1, + ACTIONS(4332), 1, anon_sym_CARET, - ACTIONS(4282), 1, + ACTIONS(4334), 1, anon_sym_AMP, - ACTIONS(4284), 1, + ACTIONS(4336), 1, anon_sym_PIPE, - ACTIONS(4288), 1, + ACTIONS(4340), 1, anon_sym_PIPE_PIPE, - ACTIONS(4302), 1, + ACTIONS(4348), 1, + anon_sym_as, + ACTIONS(4362), 1, anon_sym_EQ, - ACTIONS(4318), 1, - anon_sym_EQ_GT, - ACTIONS(4416), 1, + ACTIONS(4460), 1, anon_sym_DOT_DOT, - ACTIONS(4466), 1, - anon_sym_AMP_AMP, - ACTIONS(4276), 2, + ACTIONS(4328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4290), 2, + ACTIONS(4342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4294), 2, + ACTIONS(4346), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4418), 2, + ACTIONS(4442), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1916), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4330), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 4, + ACTIONS(4344), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4300), 10, + ACTIONS(4360), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162844,60 +164629,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59726] = 22, + [60221] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3740), 1, + ACTIONS(3776), 1, anon_sym_QMARK, - ACTIONS(3742), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3874), 1, + ACTIONS(3906), 1, anon_sym_as, - ACTIONS(4006), 1, + ACTIONS(4040), 1, anon_sym_CARET, - ACTIONS(4008), 1, + ACTIONS(4042), 1, anon_sym_AMP, - ACTIONS(4010), 1, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(4012), 1, + ACTIONS(4046), 1, anon_sym_AMP_AMP, - ACTIONS(4014), 1, + ACTIONS(4048), 1, anon_sym_PIPE_PIPE, - ACTIONS(4036), 1, + ACTIONS(4054), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_DOT_DOT, - ACTIONS(4468), 1, + ACTIONS(4502), 1, anon_sym_SEMI, - ACTIONS(4002), 2, + ACTIONS(4036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4016), 2, + ACTIONS(4050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4020), 2, + ACTIONS(4058), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4130), 2, + ACTIONS(4168), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 3, + ACTIONS(4038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4018), 4, + ACTIONS(4056), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4034), 10, + ACTIONS(4052), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162908,47 +164693,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59812] = 17, + [60307] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4470), 1, + ACTIONS(4504), 1, sym_identifier, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - STATE(2961), 1, + STATE(3076), 1, sym_scoped_type_identifier, - STATE(3152), 1, + STATE(3345), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1918), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162966,47 +164751,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59887] = 17, + [60382] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - ACTIONS(4482), 1, + ACTIONS(4516), 1, sym_identifier, - STATE(2940), 1, + STATE(3119), 1, sym_scoped_type_identifier, - STATE(3122), 1, + STATE(3401), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1919), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163024,47 +164809,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59962] = 17, + [60457] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - ACTIONS(4484), 1, + ACTIONS(4518), 1, sym_identifier, - STATE(3000), 1, + STATE(3106), 1, sym_scoped_type_identifier, - STATE(3204), 1, + STATE(3383), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1920), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163082,47 +164867,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60037] = 17, + [60532] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - ACTIONS(4486), 1, + ACTIONS(4520), 1, sym_identifier, - STATE(3088), 1, + STATE(3014), 1, sym_scoped_type_identifier, - STATE(3367), 1, + STATE(3230), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1921), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163140,47 +164925,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60112] = 17, + [60607] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - ACTIONS(4488), 1, + ACTIONS(4522), 1, sym_identifier, - STATE(3064), 1, + STATE(3121), 1, sym_scoped_type_identifier, - STATE(3335), 1, + STATE(3403), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1922), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163198,47 +164983,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60187] = 17, + [60682] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - ACTIONS(4490), 1, + ACTIONS(4524), 1, sym_identifier, - STATE(3085), 1, + STATE(3115), 1, sym_scoped_type_identifier, - STATE(3362), 1, + STATE(3394), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1923), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163256,47 +165041,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60262] = 17, + [60757] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - ACTIONS(4492), 1, + ACTIONS(4526), 1, sym_identifier, - STATE(3090), 1, + STATE(3071), 1, sym_scoped_type_identifier, - STATE(3369), 1, + STATE(3329), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1924), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163314,47 +165099,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60337] = 17, + [60832] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3962), 1, + ACTIONS(3822), 1, anon_sym_where, - ACTIONS(4474), 1, + ACTIONS(4508), 1, anon_sym_COLON_COLON, - ACTIONS(4480), 1, + ACTIONS(4514), 1, sym_metavariable, - ACTIONS(4494), 1, + ACTIONS(4528), 1, sym_identifier, - STATE(3092), 1, + STATE(3125), 1, sym_scoped_type_identifier, - STATE(3373), 1, + STATE(3408), 1, sym_generic_type, - STATE(3447), 1, + STATE(3485), 1, sym_scoped_identifier, - STATE(3559), 1, + STATE(3596), 1, sym_generic_type_with_turbofish, - STATE(3584), 1, + STATE(3624), 1, sym_bracketed_type, - STATE(1925), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4476), 3, + ACTIONS(4510), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4478), 3, + ACTIONS(4512), 3, sym_self, sym_super, sym_crate, - ACTIONS(4472), 17, + ACTIONS(4506), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163372,19 +165157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60412] = 5, + [60907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4498), 3, + ACTIONS(4532), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4496), 29, + ACTIONS(4530), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163414,19 +165199,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60459] = 5, + [60954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1927), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4536), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4500), 29, + ACTIONS(4534), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163456,19 +165241,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60506] = 5, + [61001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4506), 3, + ACTIONS(4540), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4504), 29, + ACTIONS(4538), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163498,35 +165283,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60553] = 13, + [61048] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(3436), 1, + STATE(3545), 1, sym_attribute, - STATE(1929), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163547,35 +165332,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60615] = 13, + [61110] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(3527), 1, + STATE(3622), 1, sym_attribute, - STATE(1930), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163596,35 +165381,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60677] = 13, + [61172] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(3509), 1, + STATE(3623), 1, sym_attribute, - STATE(1931), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163645,35 +165430,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60739] = 13, + [61234] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(3576), 1, + STATE(3570), 1, sym_attribute, - STATE(1932), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163694,35 +165479,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60801] = 13, + [61296] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(3532), 1, + STATE(3517), 1, sym_attribute, - STATE(1933), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163743,35 +165528,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60863] = 13, + [61358] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3405), 1, - sym_attribute, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(1934), 2, + STATE(3503), 1, + sym_attribute, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163792,35 +165577,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60925] = 13, + [61420] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(3493), 1, + STATE(3563), 1, sym_attribute, - STATE(1935), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163841,35 +165626,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60987] = 13, + [61482] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, + STATE(3464), 1, sym_attribute, - STATE(1936), 2, + STATE(3466), 1, + sym_generic_type_with_turbofish, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163890,35 +165675,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61049] = 13, + [61544] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(4508), 1, + ACTIONS(4542), 1, sym_identifier, - ACTIONS(4514), 1, + ACTIONS(4548), 1, sym_metavariable, - STATE(2307), 1, + STATE(2309), 1, sym_scoped_identifier, - STATE(3402), 1, + STATE(3434), 1, + sym_attribute, + STATE(3440), 1, sym_bracketed_type, - STATE(3427), 1, + STATE(3466), 1, sym_generic_type_with_turbofish, - STATE(3571), 1, - sym_attribute, - STATE(1937), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(4512), 3, + ACTIONS(4546), 3, sym_self, sym_super, sym_crate, - ACTIONS(4510), 20, + ACTIONS(4544), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163939,33 +165724,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61111] = 12, + [61606] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4516), 1, + ACTIONS(4550), 1, sym_identifier, - ACTIONS(4520), 1, + ACTIONS(4554), 1, anon_sym_COLON_COLON, - ACTIONS(4524), 1, + ACTIONS(4558), 1, sym_metavariable, - STATE(3262), 1, + STATE(3235), 1, sym_scoped_identifier, - STATE(3412), 1, + STATE(3540), 1, sym_bracketed_type, - STATE(3537), 1, + STATE(3687), 1, sym_generic_type_with_turbofish, - STATE(1938), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(4522), 3, + ACTIONS(4556), 3, sym_self, sym_super, sym_crate, - ACTIONS(4518), 20, + ACTIONS(4552), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163986,33 +165771,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61170] = 12, + [61665] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4520), 1, + ACTIONS(4554), 1, anon_sym_COLON_COLON, - ACTIONS(4526), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(4532), 1, + ACTIONS(4566), 1, sym_metavariable, - STATE(3225), 1, + STATE(3228), 1, sym_scoped_identifier, - STATE(3412), 1, + STATE(3540), 1, sym_bracketed_type, - STATE(3537), 1, + STATE(3687), 1, sym_generic_type_with_turbofish, - STATE(1939), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4530), 3, + ACTIONS(4564), 3, sym_self, sym_super, sym_crate, - ACTIONS(4528), 20, + ACTIONS(4562), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164033,48 +165818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61229] = 5, + [61724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, + ACTIONS(1003), 1, anon_sym_DOT_DOT, - STATE(1940), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(987), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_else, - anon_sym_in, - [61265] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(929), 1, - anon_sym_DOT_DOT, - STATE(1941), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(931), 20, + ACTIONS(1005), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164095,29 +165849,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61301] = 11, + [61760] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(3356), 1, anon_sym_COLON, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4538), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - STATE(1942), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 14, + ACTIONS(3352), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164132,57 +165886,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61349] = 10, + [61808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3340), 1, - anon_sym_COLON, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - STATE(1974), 1, - sym_type_arguments, - STATE(2000), 1, - sym_parameters, - STATE(1943), 2, + ACTIONS(1017), 1, + anon_sym_DOT_DOT, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 14, + ACTIONS(1019), 20, 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_as, - anon_sym_where, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, anon_sym_else, - [61394] = 6, + anon_sym_in, + [61844] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3391), 1, + ACTIONS(3372), 1, anon_sym_COLON, - ACTIONS(3395), 2, - anon_sym_BANG, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - STATE(1944), 2, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3389), 17, + ACTIONS(3370), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -164194,66 +165950,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [61431] = 10, + [61889] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_COLON, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4542), 1, + ACTIONS(4580), 1, + anon_sym_LPAREN, + ACTIONS(4582), 1, + anon_sym_LBRACE, + ACTIONS(4584), 1, + anon_sym_COLON, + ACTIONS(4586), 1, + anon_sym_AT, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(4592), 1, anon_sym_COLON_COLON, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, - sym_parameters, - STATE(1945), 2, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 14, + ACTIONS(4578), 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, - [61476] = 10, + anon_sym_in, + [61942] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3334), 1, + ACTIONS(3383), 1, anon_sym_COLON, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4542), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - STATE(1946), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 14, + ACTIONS(3381), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164268,20 +166026,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61521] = 6, + [61987] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3359), 1, + ACTIONS(3419), 1, anon_sym_COLON, - ACTIONS(3363), 2, + ACTIONS(3423), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1947), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 17, + ACTIONS(3417), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164299,59 +166057,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61558] = 14, + [62024] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4546), 1, - anon_sym_LPAREN, - ACTIONS(4548), 1, - anon_sym_LBRACE, - ACTIONS(4550), 1, + ACTIONS(3411), 1, anon_sym_COLON, - ACTIONS(4552), 1, - anon_sym_AT, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(4558), 1, + ACTIONS(3415), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1974), 1, - sym_type_arguments, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 9, + ACTIONS(3409), 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, - [61611] = 6, + anon_sym_LT2, + [62061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3379), 1, + ACTIONS(3435), 1, anon_sym_COLON, - ACTIONS(3383), 2, + ACTIONS(3439), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1949), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3377), 17, + ACTIONS(3433), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164369,20 +166119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61648] = 6, + [62098] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3371), 1, + ACTIONS(3455), 1, anon_sym_COLON, - ACTIONS(3375), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1950), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(3369), 17, + ACTIONS(3453), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164400,52 +166150,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61685] = 6, + [62135] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 2, + ACTIONS(3366), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1951), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3369), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3375), 14, + ACTIONS(3364), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [61721] = 6, + [62180] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 2, + ACTIONS(3421), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1952), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3377), 3, + ACTIONS(3417), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3383), 14, + ACTIONS(3423), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164460,23 +166215,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61757] = 8, + [62216] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(1953), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3385), 15, + ACTIONS(3449), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164492,23 +166247,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61797] = 8, + [62256] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(1954), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 15, + ACTIONS(3441), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164524,49 +166279,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61837] = 8, + [62296] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(3413), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1978), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3409), 3, + anon_sym_LBRACE, + anon_sym_for, anon_sym_LT2, - STATE(1973), 1, - sym_type_arguments, - STATE(2003), 1, - sym_parameters, - STATE(1955), 2, + ACTIONS(3415), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [62332] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3664), 1, + anon_sym_COLON, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3397), 15, + ACTIONS(3662), 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [61877] = 5, + anon_sym_in, + [62366] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3502), 1, + ACTIONS(3682), 1, anon_sym_COLON, - STATE(1956), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 18, + ACTIONS(3680), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164585,23 +166367,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61911] = 8, + [62400] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(1957), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 15, + ACTIONS(3425), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164617,22 +166399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61951] = 6, + [62440] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 2, + ACTIONS(3457), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1958), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3389), 3, + ACTIONS(3453), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3395), 14, + ACTIONS(3459), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164647,76 +166429,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61987] = 5, + [62476] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_COLON, - STATE(1959), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(1996), 1, + sym_type_arguments, + STATE(2009), 1, + sym_parameters, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 18, + ACTIONS(3429), 15, 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_in, - [62021] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3361), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1960), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3357), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3363), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [62057] = 5, + [62516] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, + ACTIONS(3650), 1, anon_sym_COLON, - STATE(1961), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 18, + ACTIONS(3648), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164735,75 +166490,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62091] = 5, + [62550] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3526), 1, + ACTIONS(3437), 2, anon_sym_COLON, - STATE(1962), 2, + anon_sym_DOT_DOT, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 18, + ACTIONS(3433), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3439), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, anon_sym_in, - [62125] = 5, + [62586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 2, + ACTIONS(3674), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1963), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3363), 16, + ACTIONS(3672), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [62158] = 5, + [62620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 2, + ACTIONS(3437), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1964), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3383), 16, + ACTIONS(3439), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164820,18 +166577,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62191] = 5, + [62653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 2, + ACTIONS(3413), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1965), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3375), 16, + ACTIONS(3415), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164848,55 +166605,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62224] = 14, + [62686] = 14, ACTIONS(37), 1, anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1263), 1, + ACTIONS(1241), 1, anon_sym_DASH, - ACTIONS(1311), 1, + ACTIONS(1289), 1, aux_sym_string_literal_token1, - ACTIONS(1321), 1, + ACTIONS(1299), 1, sym__raw_string_literal_start, ACTIONS(1601), 1, anon_sym_LBRACE, - ACTIONS(4560), 1, + ACTIONS(4594), 1, sym_identifier, - STATE(3664), 1, + STATE(3709), 1, sym_label, - ACTIONS(1313), 2, + ACTIONS(1291), 2, anon_sym_true, anon_sym_false, - STATE(1966), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, ACTIONS(1617), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(3029), 3, + STATE(3112), 3, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - STATE(3293), 3, + STATE(3229), 3, sym_block, sym__literal, sym_negative_literal, - [62275] = 5, + [62737] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1990), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3409), 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, + [62768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 2, + ACTIONS(3457), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1967), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 16, + ACTIONS(3459), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164913,187 +166697,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62308] = 4, + [62801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + ACTIONS(3421), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3389), 18, + ACTIONS(3423), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [62834] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3600), 1, anon_sym_COLON, + STATE(1993), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3598), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [62339] = 12, + [62866] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4564), 1, + ACTIONS(4598), 1, anon_sym_COLON, - ACTIONS(4566), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4568), 1, + ACTIONS(4602), 1, anon_sym_DOT_DOT, - ACTIONS(4572), 1, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - STATE(1972), 1, + STATE(1997), 1, sym_type_arguments, - ACTIONS(4570), 2, + ACTIONS(4604), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1969), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(4562), 3, + ACTIONS(4596), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3447), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [62385] = 19, + [62912] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_const, - ACTIONS(4578), 1, - anon_sym_enum, - ACTIONS(4580), 1, - anon_sym_fn, - ACTIONS(4582), 1, - anon_sym_mod, - ACTIONS(4584), 1, - anon_sym_static, - ACTIONS(4586), 1, - anon_sym_struct, - ACTIONS(4588), 1, - anon_sym_trait, - ACTIONS(4590), 1, - anon_sym_type, - ACTIONS(4592), 1, - anon_sym_union, - ACTIONS(4594), 1, - anon_sym_unsafe, - ACTIONS(4596), 1, - anon_sym_use, + ACTIONS(4574), 1, + anon_sym_LT2, ACTIONS(4598), 1, - anon_sym_extern, - STATE(2207), 1, - sym_extern_modifier, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(3495), 1, - sym_function_modifiers, - ACTIONS(4574), 2, - anon_sym_async, - anon_sym_default, - STATE(1970), 2, - sym_line_comment, - sym_block_comment, - [62445] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, + anon_sym_COLON, ACTIONS(4600), 1, - anon_sym_const, + anon_sym_BANG, ACTIONS(4602), 1, - anon_sym_enum, - ACTIONS(4604), 1, - anon_sym_fn, - ACTIONS(4606), 1, - anon_sym_mod, + anon_sym_DOT_DOT, ACTIONS(4608), 1, - anon_sym_static, - ACTIONS(4610), 1, - anon_sym_struct, - ACTIONS(4612), 1, - anon_sym_trait, - ACTIONS(4614), 1, - anon_sym_type, - ACTIONS(4616), 1, - anon_sym_union, - ACTIONS(4618), 1, - anon_sym_unsafe, - ACTIONS(4620), 1, - anon_sym_use, - ACTIONS(4622), 1, - anon_sym_extern, - STATE(2194), 1, - sym_extern_modifier, - STATE(2258), 1, - aux_sym_function_modifiers_repeat1, - STATE(3682), 1, - sym_function_modifiers, - ACTIONS(4574), 2, - anon_sym_async, - anon_sym_default, - STATE(1971), 2, - sym_line_comment, - sym_block_comment, - [62505] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_COLON, - STATE(1972), 2, + anon_sym_COLON_COLON, + STATE(1997), 1, + sym_type_arguments, + ACTIONS(4604), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 16, + ACTIONS(4596), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [62537] = 5, + anon_sym_in, + [62956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3604), 1, anon_sym_COLON, - STATE(1973), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 16, + ACTIONS(3602), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165110,17 +166846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62569] = 5, + [62988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3592), 1, + ACTIONS(3588), 1, anon_sym_COLON, - STATE(1974), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3590), 16, + ACTIONS(3586), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165137,52 +166873,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62601] = 11, + [63020] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4564), 1, - anon_sym_COLON, - ACTIONS(4566), 1, - anon_sym_BANG, - ACTIONS(4568), 1, - anon_sym_DOT_DOT, + ACTIONS(4612), 1, + anon_sym_const, + ACTIONS(4614), 1, + anon_sym_enum, + ACTIONS(4616), 1, + anon_sym_fn, + ACTIONS(4618), 1, + anon_sym_mod, + ACTIONS(4620), 1, + anon_sym_static, + ACTIONS(4622), 1, + anon_sym_struct, ACTIONS(4624), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1975), 2, + anon_sym_trait, + ACTIONS(4626), 1, + anon_sym_type, + ACTIONS(4628), 1, + anon_sym_union, + ACTIONS(4630), 1, + anon_sym_unsafe, + ACTIONS(4632), 1, + anon_sym_use, + ACTIONS(4634), 1, + anon_sym_extern, + STATE(2205), 1, + sym_extern_modifier, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(3727), 1, + sym_function_modifiers, + ACTIONS(4610), 2, + anon_sym_async, + anon_sym_default, + STATE(1998), 2, + sym_line_comment, + sym_block_comment, + [63080] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4636), 1, + anon_sym_const, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_fn, + ACTIONS(4642), 1, + anon_sym_mod, + ACTIONS(4644), 1, + anon_sym_static, + ACTIONS(4646), 1, + anon_sym_struct, + ACTIONS(4648), 1, + anon_sym_trait, + ACTIONS(4650), 1, + anon_sym_type, + ACTIONS(4652), 1, + anon_sym_union, + ACTIONS(4654), 1, + anon_sym_unsafe, + ACTIONS(4656), 1, + anon_sym_use, + ACTIONS(4658), 1, + anon_sym_extern, + STATE(2225), 1, + sym_extern_modifier, + STATE(2258), 1, + aux_sym_function_modifiers_repeat1, + STATE(3601), 1, + sym_function_modifiers, + ACTIONS(4610), 2, + anon_sym_async, + anon_sym_default, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + [63140] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4562), 9, + ACTIONS(1437), 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, - [62645] = 6, + [63169] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3355), 1, + ACTIONS(3427), 1, anon_sym_COLON, - ACTIONS(4626), 1, + ACTIONS(4660), 1, anon_sym_COLON_COLON, - STATE(1976), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 14, + ACTIONS(3425), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165197,15 +167007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62678] = 4, + [63202] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1977), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 16, + ACTIONS(3626), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165222,17 +167032,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62707] = 5, + [63231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(4662), 1, anon_sym_DASH_GT, - STATE(1978), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 15, + ACTIONS(3612), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165248,55 +167058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62738] = 10, + [63262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4546), 1, - anon_sym_LPAREN, - ACTIONS(4550), 1, - anon_sym_COLON, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1979), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4544), 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, - [62779] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3367), 1, - anon_sym_COLON, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - STATE(1980), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 14, + ACTIONS(1051), 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, @@ -165306,42 +167082,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62812] = 6, + anon_sym_in, + [63291] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3367), 1, - anon_sym_COLON, - ACTIONS(4632), 1, - anon_sym_COLON_COLON, - STATE(1981), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 14, + ACTIONS(3676), 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, - [62845] = 4, + [63320] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1982), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 16, + ACTIONS(3684), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165353,20 +167128,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62874] = 4, + [63349] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 16, + ACTIONS(1471), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165378,57 +167153,60 @@ 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, - [62903] = 16, + anon_sym_in, + [63378] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, + ACTIONS(3352), 1, + anon_sym_PLUS, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4544), 1, + ACTIONS(4578), 1, anon_sym_PIPE, - ACTIONS(4548), 1, + ACTIONS(4582), 1, anon_sym_LBRACE, - ACTIONS(4550), 1, + ACTIONS(4584), 1, anon_sym_COLON, - ACTIONS(4552), 1, + ACTIONS(4586), 1, anon_sym_AT, - ACTIONS(4554), 1, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - ACTIONS(4634), 1, + ACTIONS(4664), 1, anon_sym_LPAREN, - ACTIONS(4636), 1, + ACTIONS(4669), 1, anon_sym_COLON_COLON, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1984), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3308), 3, + ACTIONS(4666), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [62956] = 4, + STATE(2008), 2, + sym_line_comment, + sym_block_comment, + [63433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + ACTIONS(4671), 1, + anon_sym_DASH_GT, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3536), 16, + ACTIONS(3618), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165440,57 +167218,21 @@ 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, - [62985] = 16, + [63464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4548), 1, - anon_sym_LBRACE, - ACTIONS(4552), 1, - anon_sym_AT, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(4638), 1, - anon_sym_LPAREN, - ACTIONS(4640), 1, - anon_sym_RBRACK, - ACTIONS(4643), 1, - anon_sym_COLON_COLON, - STATE(1974), 1, - sym_type_arguments, - STATE(2000), 1, - sym_parameters, - ACTIONS(3308), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4544), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1986), 2, - sym_line_comment, - sym_block_comment, - [63038] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1987), 2, + ACTIONS(4673), 1, + anon_sym_DASH_GT, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 16, + ACTIONS(3636), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165502,22 +167244,19 @@ 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, - [63067] = 5, + [63495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(1988), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3670), 15, + ACTIONS(3666), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165529,19 +167268,22 @@ 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, - [63098] = 4, + [63524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + ACTIONS(4675), 1, + anon_sym_DASH_GT, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 16, + ACTIONS(3642), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165557,16 +167299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63127] = 4, + [63555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + ACTIONS(4677), 1, + anon_sym_DASH_GT, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 16, + ACTIONS(3606), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165578,51 +167321,48 @@ 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, - [63156] = 6, + [63586] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3387), 1, - anon_sym_COLON, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - STATE(1991), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3385), 14, + ACTIONS(3652), 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, - [63189] = 6, + [63615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3367), 1, + ACTIONS(3427), 1, anon_sym_COLON, - ACTIONS(4647), 1, + ACTIONS(4679), 1, anon_sym_COLON_COLON, - STATE(1992), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 14, + ACTIONS(3425), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165637,21 +167377,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63222] = 4, + [63648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + ACTIONS(4681), 1, + anon_sym_LPAREN, + STATE(2016), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4108), 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, + [63679] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3431), 1, + anon_sym_COLON, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 16, + ACTIONS(3429), 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, @@ -165661,22 +167430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63251] = 4, + [63712] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 16, + ACTIONS(3449), 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, @@ -165686,56 +167457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63280] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3308), 1, - anon_sym_PLUS, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4544), 1, - anon_sym_PIPE, - ACTIONS(4548), 1, - anon_sym_LBRACE, - ACTIONS(4550), 1, - anon_sym_COLON, - ACTIONS(4552), 1, - anon_sym_AT, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(4649), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_COLON_COLON, - STATE(1974), 1, - sym_type_arguments, - STATE(2000), 1, - sym_parameters, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4640), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1995), 2, - sym_line_comment, - sym_block_comment, - [63335] = 5, + [63745] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4653), 1, + ACTIONS(4685), 1, anon_sym_DASH_GT, - STATE(1996), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 15, + ACTIONS(3656), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165751,23 +167483,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63366] = 5, + [63776] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - STATE(1997), 2, + ACTIONS(3427), 1, + anon_sym_COLON, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3602), 15, + ACTIONS(3425), 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, @@ -165777,76 +167510,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63397] = 5, + [63809] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4657), 1, - anon_sym_DASH_GT, - STATE(1998), 2, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4578), 1, + anon_sym_PIPE, + ACTIONS(4582), 1, + anon_sym_LBRACE, + ACTIONS(4584), 1, + anon_sym_COLON, + ACTIONS(4586), 1, + anon_sym_AT, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(4687), 1, + anon_sym_LPAREN, + ACTIONS(4689), 1, + anon_sym_COLON_COLON, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 15, - anon_sym_SEMI, + ACTIONS(3352), 3, 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, - [63428] = 6, + [63862] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3399), 1, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4580), 1, + anon_sym_LPAREN, + ACTIONS(4584), 1, anon_sym_COLON, - ACTIONS(4626), 1, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(4691), 1, anon_sym_COLON_COLON, - STATE(1999), 2, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3397), 14, + ACTIONS(4578), 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, - [63461] = 5, + anon_sym_in, + [63903] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4659), 1, - anon_sym_DASH_GT, - STATE(2000), 2, + ACTIONS(3443), 1, + anon_sym_COLON, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3614), 15, + ACTIONS(3441), 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, @@ -165856,75 +167605,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63492] = 11, + [63936] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4566), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4568), 1, + ACTIONS(4602), 1, anon_sym_DOT_DOT, - ACTIONS(4661), 1, + ACTIONS(4693), 1, anon_sym_COLON_COLON, - STATE(1972), 1, + STATE(1997), 1, sym_type_arguments, - ACTIONS(4570), 2, + ACTIONS(4604), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2001), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(4562), 3, + ACTIONS(4596), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3447), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63535] = 5, + [63979] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4582), 1, + anon_sym_LBRACE, + ACTIONS(4586), 1, + anon_sym_AT, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(4666), 1, + anon_sym_RBRACK, + ACTIONS(4695), 1, anon_sym_LPAREN, - STATE(2002), 2, + ACTIONS(4697), 1, + anon_sym_COLON_COLON, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + ACTIONS(3352), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4578), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(4070), 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, - [63566] = 5, + [64032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4665), 1, + ACTIONS(4699), 1, anon_sym_DASH_GT, - STATE(2003), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3620), 15, + ACTIONS(3630), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165940,39 +167700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63597] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4080), 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, - [63625] = 4, + [64063] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2005), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 15, + ACTIONS(1047), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165988,15 +167724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63653] = 4, + anon_sym_in, + [64092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2006), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3792), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166012,15 +167749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63681] = 4, + [64120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2007), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3924), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166036,15 +167773,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63709] = 4, + [64148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2008), 2, + STATE(2030), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4117), 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, + [64176] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4596), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_COLON, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_DOT_DOT, + ACTIONS(4701), 1, + anon_sym_COLON_COLON, + STATE(1997), 1, + sym_type_arguments, + ACTIONS(4604), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64220] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3718), 15, + ACTIONS(3864), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166060,15 +167853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63737] = 4, + [64248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3385), 15, + ACTIONS(3740), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166084,15 +167877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63765] = 4, + [64276] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2010), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 15, + ACTIONS(4018), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166108,15 +167901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63793] = 4, + [64304] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3920), 15, + ACTIONS(3868), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166132,15 +167925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63821] = 4, + [64332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3740), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166156,17 +167949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63849] = 5, + [64360] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3996), 1, - anon_sym_COLON_COLON, - STATE(2013), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(4075), 14, + ACTIONS(4098), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -166181,15 +167972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [63879] = 4, + sym_identifier, + [64388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 15, + ACTIONS(3820), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166205,15 +167997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63907] = 4, + [64416] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 15, + ACTIONS(3720), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166229,15 +168021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63935] = 4, + [64444] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3788), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166253,15 +168045,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63963] = 4, + [64472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2017), 2, + ACTIONS(4034), 1, + anon_sym_COLON_COLON, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(4110), 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, + [64502] = 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(3796), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166277,15 +168094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63991] = 4, + [64530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3449), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166301,40 +168118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64019] = 5, + [64558] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_COLON_COLON, - STATE(2019), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4075), 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, - [64049] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2020), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(3441), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166350,15 +168142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64077] = 4, + [64586] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2021), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 15, + ACTIONS(3740), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166374,15 +168166,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64105] = 4, + [64614] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2022), 2, + STATE(2046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4123), 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, + [64642] = 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(3808), 15, + ACTIONS(3724), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166398,15 +168214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64133] = 4, + [64670] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2023), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 15, + ACTIONS(3728), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166422,15 +168238,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64161] = 4, + [64698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2024), 2, + ACTIONS(4703), 1, + anon_sym_COLON_COLON, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 15, + ACTIONS(4110), 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, + [64728] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3732), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166446,15 +168287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64189] = 4, + [64756] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(3425), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166470,15 +168311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64217] = 4, + [64784] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2026), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3856), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166494,15 +168335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64245] = 4, + [64812] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3696), 15, + ACTIONS(3860), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166518,15 +168359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64273] = 4, + [64840] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2028), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(3932), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166542,15 +168383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64301] = 4, + [64868] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2029), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3397), 15, + ACTIONS(3916), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166566,47 +168407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64329] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4562), 1, - anon_sym_PIPE, - ACTIONS(4564), 1, - anon_sym_COLON, - ACTIONS(4566), 1, - anon_sym_BANG, - ACTIONS(4568), 1, - anon_sym_DOT_DOT, - ACTIONS(4669), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2030), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64373] = 4, + [64896] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2031), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3920), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166622,15 +168431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64401] = 4, + [64924] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2032), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3780), 15, + ACTIONS(3936), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166646,63 +168455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64429] = 4, + [64952] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4086), 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, - [64457] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4064), 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, - [64485] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3824), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166718,15 +168479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64513] = 4, + [64980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3828), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166742,15 +168503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64541] = 4, + [65008] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(3832), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166766,15 +168527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64569] = 4, + [65036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 15, + ACTIONS(3429), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166790,15 +168551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64597] = 4, + [65064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 15, + ACTIONS(3940), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166814,15 +168575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64625] = 4, + [65092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(3836), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166838,15 +168599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64653] = 4, + [65120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(3840), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166862,15 +168623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64681] = 4, + [65148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3908), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166886,15 +168647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64709] = 4, + [65176] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3928), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166910,44 +168671,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64737] = 8, + [65204] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4564), 1, - anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_DOT_DOT, - ACTIONS(4624), 1, - anon_sym_COLON_COLON, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2044), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4562), 9, + ACTIONS(3912), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [64772] = 5, + [65232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, + ACTIONS(4707), 1, anon_sym_DOT_DOT, - STATE(2045), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(4671), 13, + ACTIONS(4705), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166961,41 +168719,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64801] = 5, + [65261] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, + ACTIONS(4598), 1, + anon_sym_COLON, + ACTIONS(4602), 1, anon_sym_DOT_DOT, - STATE(2046), 2, + ACTIONS(4608), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(1015), 13, + ACTIONS(4596), 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, - [64830] = 5, + [65296] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, + ACTIONS(997), 1, anon_sym_DOT_DOT, - STATE(2047), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 13, + ACTIONS(999), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167009,19 +168770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64859] = 6, + [65325] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4677), 1, + ACTIONS(4711), 1, anon_sym_pat, - STATE(164), 1, + STATE(162), 1, sym_fragment_specifier, - STATE(2048), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(4675), 12, + ACTIONS(4709), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -167034,404 +168795,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [64890] = 7, + [65356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 1, + ACTIONS(1009), 1, anon_sym_DOT_DOT, - ACTIONS(4679), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2049), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3389), 4, + ACTIONS(1011), 13, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3395), 6, - anon_sym_BANG, + 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_COLON_COLON, - [64922] = 7, + anon_sym_else, + anon_sym_in, + [65385] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(3361), 2, + ACTIONS(3421), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2050), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 5, - anon_sym_RPAREN, + ACTIONS(3417), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3363), 5, + ACTIONS(4713), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3423), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64954] = 7, + [65417] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 1, - anon_sym_DOT_DOT, - ACTIONS(4685), 2, + ACTIONS(4716), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2051), 2, + ACTIONS(3457), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3369), 4, - anon_sym_SEMI, + ACTIONS(3453), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3375), 6, + ACTIONS(3459), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [64986] = 7, + [65449] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(3373), 2, + ACTIONS(3421), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2052), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3369), 5, + ACTIONS(3417), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3375), 5, + ACTIONS(3423), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65018] = 7, + [65481] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 2, + ACTIONS(4719), 1, + anon_sym_LPAREN, + ACTIONS(3413), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2053), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3377), 3, + ACTIONS(3409), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4688), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3383), 5, + anon_sym_LT2, + ACTIONS(3415), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65050] = 7, + [65513] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 2, + ACTIONS(3457), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2054), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3389), 3, + ACTIONS(3453), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4679), 3, + ACTIONS(4716), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3395), 5, + ACTIONS(3459), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65082] = 7, + [65545] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, - anon_sym_LPAREN, - ACTIONS(3381), 2, + ACTIONS(3413), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2055), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3377), 5, - anon_sym_RPAREN, + ACTIONS(3409), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3383), 5, + ACTIONS(4719), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3415), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65114] = 6, + [65577] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, + ACTIONS(3437), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2056), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 10, - anon_sym_SEMI, + ACTIONS(3433), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4722), 3, + anon_sym_LPAREN, 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, - [65144] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(3439), 5, anon_sym_BANG, - ACTIONS(4538), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(4693), 1, - anon_sym_EQ, - STATE(1974), 1, - sym_type_arguments, - STATE(2000), 1, - sym_parameters, - STATE(2983), 1, - sym_trait_bounds, - ACTIONS(3308), 2, - anon_sym_PLUS, - anon_sym_as, - ACTIONS(4695), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2057), 2, - sym_line_comment, - sym_block_comment, - [65190] = 7, + [65609] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(3393), 2, - anon_sym_COLON, + ACTIONS(3457), 1, anon_sym_DOT_DOT, - STATE(2058), 2, + ACTIONS(4716), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3389), 5, - anon_sym_RPAREN, + ACTIONS(3453), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3395), 5, + ACTIONS(3459), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65222] = 7, + [65641] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 1, + ACTIONS(3421), 1, anon_sym_DOT_DOT, - ACTIONS(4688), 2, + ACTIONS(4713), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2059), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3377), 4, + ACTIONS(3417), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3383), 6, + ACTIONS(3423), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65254] = 7, + [65673] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 2, - anon_sym_COLON, + ACTIONS(3437), 1, anon_sym_DOT_DOT, - STATE(2060), 2, + ACTIONS(4722), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3369), 3, + ACTIONS(3433), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4685), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3375), 5, + ACTIONS(3439), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65286] = 7, + [65705] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 1, + ACTIONS(3413), 1, anon_sym_DOT_DOT, - ACTIONS(4682), 2, + ACTIONS(4719), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2061), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 4, + ACTIONS(3409), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3363), 6, + ACTIONS(3415), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65318] = 7, + [65737] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 2, - anon_sym_COLON, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - STATE(2062), 2, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4682), 3, - anon_sym_LPAREN, + ACTIONS(4578), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3363), 5, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65350] = 13, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65767] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4699), 1, + ACTIONS(4727), 1, anon_sym_LBRACE, - ACTIONS(4701), 1, + ACTIONS(4729), 1, anon_sym_BANG, - ACTIONS(4703), 1, + ACTIONS(4731), 1, anon_sym_AT, - ACTIONS(4705), 1, + ACTIONS(4733), 1, anon_sym_DOT_DOT, - ACTIONS(4709), 1, + ACTIONS(4737), 1, anon_sym_COLON_COLON, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - ACTIONS(4707), 2, + ACTIONS(4735), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2063), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 3, + ACTIONS(4578), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [65394] = 5, + [65811] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4572), 1, + anon_sym_COLON_COLON, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4739), 1, + anon_sym_COLON, + ACTIONS(4741), 1, + anon_sym_EQ, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + STATE(3092), 1, + sym_trait_bounds, + ACTIONS(3352), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4743), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2086), 2, + sym_line_comment, + sym_block_comment, + [65857] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_LPAREN, + ACTIONS(3437), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2064), 2, + STATE(2087), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3433), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3439), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [65889] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4747), 1, + anon_sym_DOT_DOT, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(4711), 12, + ACTIONS(4745), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167444,140 +169229,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65422] = 13, + [65917] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4717), 1, + ACTIONS(4751), 1, anon_sym_GT, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4721), 1, + ACTIONS(4755), 1, sym_metavariable, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2114), 1, + STATE(2135), 1, aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, + STATE(2742), 1, sym_lifetime, - STATE(2065), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - STATE(3144), 3, + STATE(3385), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65465] = 13, + [65960] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4759), 1, + anon_sym_COLON, + ACTIONS(3758), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4757), 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, + [65989] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4721), 1, + ACTIONS(4755), 1, sym_metavariable, - ACTIONS(4723), 1, + ACTIONS(4761), 1, anon_sym_GT, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2114), 1, + STATE(2135), 1, aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, + STATE(2742), 1, sym_lifetime, - STATE(2066), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - STATE(3144), 3, + STATE(3385), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65508] = 13, + [66032] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4648), 1, + anon_sym_trait, + ACTIONS(4763), 1, + anon_sym_impl, + STATE(418), 1, + sym_block, + STATE(3574), 1, + sym_label, + STATE(2092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66069] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4759), 1, + anon_sym_COLON, + ACTIONS(3892), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4757), 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, + [66098] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4721), 1, + ACTIONS(4755), 1, sym_metavariable, - ACTIONS(4725), 1, + ACTIONS(4765), 1, anon_sym_GT, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2114), 1, + STATE(2135), 1, aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, + STATE(2742), 1, sym_lifetime, - STATE(2067), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - STATE(3144), 3, + STATE(3385), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65551] = 13, + [66141] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4721), 1, + ACTIONS(4755), 1, sym_metavariable, - ACTIONS(4727), 1, + ACTIONS(4767), 1, anon_sym_GT, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2114), 1, + STATE(2135), 1, aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, + STATE(2742), 1, sym_lifetime, - STATE(2068), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - STATE(3144), 3, + STATE(3385), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65594] = 6, + [66184] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(3046), 1, + anon_sym_SQUOTE, + ACTIONS(4749), 1, + sym_identifier, + ACTIONS(4753), 1, + anon_sym_const, + ACTIONS(4755), 1, + sym_metavariable, + ACTIONS(4769), 1, + anon_sym_GT, + STATE(1433), 1, + sym_attribute_item, + STATE(2135), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2742), 1, + sym_lifetime, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + STATE(3385), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66227] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(3046), 1, + anon_sym_SQUOTE, + ACTIONS(4749), 1, + sym_identifier, + ACTIONS(4753), 1, + anon_sym_const, + ACTIONS(4755), 1, + sym_metavariable, + ACTIONS(4771), 1, + anon_sym_GT, + STATE(1433), 1, + sym_attribute_item, + STATE(2135), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2742), 1, + sym_lifetime, + STATE(2097), 2, + sym_line_comment, + sym_block_comment, + STATE(3385), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66270] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2098), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1395), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(3842), 2, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66294] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4568), 1, anon_sym_LPAREN, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - STATE(2069), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4773), 1, + anon_sym_for, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + STATE(2099), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3352), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66332] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4777), 1, + anon_sym_COLON, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 9, + ACTIONS(4775), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167587,20 +169551,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65623] = 6, + [66360] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(4783), 1, anon_sym_COLON, - ACTIONS(3888), 2, + STATE(2101), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4781), 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, + [66388] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4568), 1, anon_sym_LPAREN, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4572), 1, + anon_sym_COLON_COLON, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4785), 1, + anon_sym_for, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3352), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66426] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4789), 1, + anon_sym_COLON, + ACTIONS(4791), 1, + anon_sym_COLON_COLON, + STATE(2103), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4787), 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, + [66454] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4703), 1, + anon_sym_COLON_COLON, + ACTIONS(4795), 1, + anon_sym_COLON, + STATE(2104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4793), 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, + [66482] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4795), 1, + anon_sym_COLON, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + STATE(2105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4793), 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, + [66510] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4703), 1, anon_sym_COLON_COLON, - STATE(2070), 2, + ACTIONS(4789), 1, + anon_sym_COLON, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 9, + ACTIONS(4787), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167610,106 +169688,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65652] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, + [66538] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4588), 1, - anon_sym_trait, - ACTIONS(4733), 1, - anon_sym_impl, - STATE(394), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2071), 2, + ACTIONS(1289), 1, + aux_sym_string_literal_token1, + ACTIONS(4801), 1, + sym_crate, + STATE(2286), 1, + sym_string_literal, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(4799), 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, - [65689] = 13, + [66568] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(3022), 1, - anon_sym_SQUOTE, - ACTIONS(4715), 1, - sym_identifier, - ACTIONS(4719), 1, - anon_sym_const, - ACTIONS(4721), 1, - sym_metavariable, - ACTIONS(4735), 1, - anon_sym_GT, - STATE(1482), 1, - sym_attribute_item, - STATE(2114), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, - sym_lifetime, - STATE(2072), 2, + ACTIONS(4791), 1, + anon_sym_COLON_COLON, + ACTIONS(4805), 1, + anon_sym_COLON, + STATE(2108), 2, sym_line_comment, sym_block_comment, - STATE(3144), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65732] = 13, + ACTIONS(4803), 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, + [66596] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(3022), 1, - anon_sym_SQUOTE, - ACTIONS(4715), 1, - sym_identifier, - ACTIONS(4719), 1, - anon_sym_const, - ACTIONS(4721), 1, - sym_metavariable, - ACTIONS(4737), 1, - anon_sym_GT, - STATE(1482), 1, - sym_attribute_item, - STATE(2114), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, - sym_lifetime, - STATE(2073), 2, + ACTIONS(1289), 1, + aux_sym_string_literal_token1, + ACTIONS(4807), 1, + sym_crate, + STATE(2286), 1, + sym_string_literal, + STATE(2109), 2, sym_line_comment, sym_block_comment, - STATE(3144), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65775] = 6, + ACTIONS(4799), 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, + [66626] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON, - ACTIONS(4743), 1, + ACTIONS(4703), 1, anon_sym_COLON_COLON, - STATE(2074), 2, + ACTIONS(4805), 1, + anon_sym_COLON, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4739), 9, + ACTIONS(4803), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167719,37 +169778,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65803] = 6, + [66654] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 1, - anon_sym_DOT_DOT, - ACTIONS(3357), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2075), 2, + ACTIONS(4789), 1, + anon_sym_COLON, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3363), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4787), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65831] = 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66682] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(1387), 11, + ACTIONS(1391), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167761,448 +169820,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65855] = 12, + [66706] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4745), 1, + ACTIONS(4809), 1, sym_metavariable, - STATE(1059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2603), 1, + STATE(2134), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2742), 1, sym_lifetime, - STATE(2077), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - STATE(2988), 3, + STATE(3032), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65895] = 6, + [66746] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4749), 1, - anon_sym_COLON, - STATE(2078), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4811), 1, + anon_sym_for, + STATE(1993), 1, + sym_type_arguments, + STATE(2003), 1, + sym_parameters, + STATE(2114), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3352), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66784] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4747), 9, + ACTIONS(1413), 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, - [65923] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3381), 1, - anon_sym_DOT_DOT, - ACTIONS(3377), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3383), 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, - [65951] = 12, + [66808] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4751), 1, + ACTIONS(4755), 1, sym_metavariable, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2077), 1, + STATE(2135), 1, aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, + STATE(2742), 1, sym_lifetime, - STATE(2080), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - STATE(2975), 3, + STATE(3385), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65991] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4753), 1, - sym_identifier, - STATE(417), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2081), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4755), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66025] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_COLON, - ACTIONS(4761), 1, - anon_sym_COLON_COLON, - STATE(2082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4757), 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, - [66053] = 11, + [66848] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4538), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4763), 1, + ACTIONS(4813), 1, anon_sym_for, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - STATE(2083), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, + ACTIONS(3352), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66091] = 12, + [66886] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4765), 1, - sym_identifier, - ACTIONS(4767), 1, - anon_sym_RBRACE, - ACTIONS(4769), 1, - anon_sym_DOT_DOT, - ACTIONS(4771), 1, - anon_sym_COMMA, - ACTIONS(4773), 1, - sym_integer_literal, - STATE(1482), 1, - sym_attribute_item, - STATE(2432), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2084), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4815), 1, + anon_sym_move, + STATE(404), 1, + sym_block, + STATE(3574), 1, + sym_label, + STATE(2118), 2, sym_line_comment, sym_block_comment, - STATE(2874), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66131] = 12, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66920] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4765), 1, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4769), 1, - anon_sym_DOT_DOT, - ACTIONS(4773), 1, - sym_integer_literal, - ACTIONS(4775), 1, - anon_sym_RBRACE, - ACTIONS(4777), 1, - anon_sym_COMMA, - STATE(1482), 1, - sym_attribute_item, - STATE(2432), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2085), 2, - sym_line_comment, - sym_block_comment, - STATE(2792), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66171] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1311), 1, - aux_sym_string_literal_token1, - ACTIONS(4781), 1, - sym_crate, - STATE(2248), 1, - sym_string_literal, - STATE(2086), 2, + STATE(405), 1, + sym_block, + STATE(3574), 1, + sym_label, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(4779), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4819), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66201] = 11, + [66954] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4538), 1, - anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(3457), 1, + anon_sym_DOT_DOT, + ACTIONS(3453), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4783), 1, - anon_sym_for, - STATE(1974), 1, - sym_type_arguments, - STATE(2000), 1, - sym_parameters, - STATE(2087), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66239] = 12, + ACTIONS(3459), 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, + [66982] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4785), 1, + ACTIONS(4821), 1, sym_metavariable, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2089), 1, + STATE(2122), 1, aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, + STATE(2742), 1, sym_lifetime, - STATE(2088), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - STATE(3083), 3, + STATE(3099), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66279] = 12, + [67022] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(3046), 1, anon_sym_SQUOTE, - ACTIONS(4715), 1, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(4719), 1, + ACTIONS(4753), 1, anon_sym_const, - ACTIONS(4787), 1, + ACTIONS(4823), 1, sym_metavariable, - STATE(1059), 1, + STATE(1074), 1, aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2603), 1, + STATE(2742), 1, sym_lifetime, - STATE(2089), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - STATE(2819), 3, + STATE(2862), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66319] = 4, + [67062] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1403), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3356), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66343] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4789), 1, - anon_sym_move, - STATE(416), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66377] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4538), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4791), 1, - anon_sym_for, - STATE(1974), 1, - sym_type_arguments, - STATE(2000), 1, + ACTIONS(4825), 1, + anon_sym_EQ, + STATE(2003), 1, sym_parameters, - STATE(2092), 2, + STATE(2394), 1, + sym_type_arguments, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3352), 3, anon_sym_PLUS, - anon_sym_where, - [66415] = 4, + anon_sym_GT, + anon_sym_COMMA, + [67102] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(4829), 1, + anon_sym_COLON, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1399), 11, + ACTIONS(4827), 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, - [66439] = 6, + [67130] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 1, + ACTIONS(3421), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 2, + ACTIONS(3417), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2094), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 8, + ACTIONS(3423), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -168211,275 +170150,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [66467] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4795), 1, - anon_sym_COLON, - ACTIONS(4797), 1, - anon_sym_COLON_COLON, - STATE(2095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4793), 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, - [66495] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2096), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1409), 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, - [66519] = 6, + [67158] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_COLON, - STATE(2097), 2, + ACTIONS(3413), 1, + anon_sym_DOT_DOT, + ACTIONS(3409), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 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, - [66547] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(3415), 8, anon_sym_LPAREN, - ACTIONS(4536), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4538), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4799), 1, - anon_sym_for, - STATE(1974), 1, - sym_type_arguments, - STATE(2000), 1, - sym_parameters, - STATE(2098), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3308), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66585] = 6, + anon_sym_if, + [67186] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_COLON, - STATE(2099), 2, + ACTIONS(3437), 1, + anon_sym_DOT_DOT, + ACTIONS(3433), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3439), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66613] = 12, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67214] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_COLON, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4538), 1, - anon_sym_COLON_COLON, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4801), 1, - anon_sym_EQ, - STATE(2000), 1, - sym_parameters, - STATE(2345), 1, - sym_type_arguments, - STATE(2100), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + sym_identifier, + ACTIONS(4833), 1, + anon_sym_RBRACE, + ACTIONS(4835), 1, + anon_sym_DOT_DOT, + ACTIONS(4837), 1, + anon_sym_COMMA, + ACTIONS(4839), 1, + sym_integer_literal, + STATE(1433), 1, + sym_attribute_item, + STATE(2460), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [66653] = 6, + STATE(2856), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67254] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - ACTIONS(4805), 1, - anon_sym_COLON, - STATE(2101), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(3046), 1, + anon_sym_SQUOTE, + ACTIONS(4749), 1, + sym_identifier, + ACTIONS(4753), 1, + anon_sym_const, + ACTIONS(4809), 1, + sym_metavariable, + STATE(1433), 1, + sym_attribute_item, + STATE(2134), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2485), 1, + sym_lifetime, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4803), 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, - [66681] = 11, + STATE(3032), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67294] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4564), 1, + ACTIONS(4598), 1, anon_sym_COLON, - ACTIONS(4566), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4568), 1, + ACTIONS(4602), 1, anon_sym_DOT_DOT, - ACTIONS(4572), 1, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - STATE(1972), 1, + STATE(1997), 1, sym_type_arguments, - ACTIONS(4570), 2, + ACTIONS(4604), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2102), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4562), 3, + ACTIONS(4596), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [66719] = 6, + [67332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_COLON_COLON, - ACTIONS(4809), 1, - anon_sym_COLON, - STATE(2103), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, + ACTIONS(1387), 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, - [66747] = 6, + [67356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_COLON_COLON, - ACTIONS(4809), 1, - anon_sym_COLON, - STATE(2104), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, + ACTIONS(1383), 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, - [66775] = 6, + [67380] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, - anon_sym_COLON_COLON, - ACTIONS(4809), 1, - anon_sym_COLON, - STATE(2105), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4807), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + sym_identifier, + ACTIONS(4835), 1, + anon_sym_DOT_DOT, + ACTIONS(4839), 1, + sym_integer_literal, + ACTIONS(4841), 1, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4843), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66803] = 6, + STATE(1433), 1, + sym_attribute_item, + STATE(2460), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2133), 2, + sym_line_comment, + sym_block_comment, + STATE(2826), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67420] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(3046), 1, + anon_sym_SQUOTE, + ACTIONS(4749), 1, + sym_identifier, + ACTIONS(4753), 1, + anon_sym_const, + ACTIONS(4845), 1, + sym_metavariable, + STATE(1074), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1433), 1, + sym_attribute_item, + STATE(2742), 1, + sym_lifetime, + STATE(2134), 2, + sym_line_comment, + sym_block_comment, + STATE(3095), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67460] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(3046), 1, + anon_sym_SQUOTE, + ACTIONS(4749), 1, + sym_identifier, + ACTIONS(4753), 1, + anon_sym_const, + ACTIONS(4847), 1, + sym_metavariable, + STATE(1074), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1433), 1, + sym_attribute_item, + STATE(2742), 1, + sym_lifetime, + STATE(2135), 2, + sym_line_comment, + sym_block_comment, + STATE(3134), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67500] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_COLON, ACTIONS(4797), 1, anon_sym_COLON_COLON, - STATE(2106), 2, + ACTIONS(4805), 1, + anon_sym_COLON, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 9, + ACTIONS(4803), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168489,21 +170423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66831] = 7, + [67528] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1311), 1, + ACTIONS(1289), 1, aux_sym_string_literal_token1, - ACTIONS(4811), 1, + ACTIONS(4849), 1, sym_crate, - STATE(2248), 1, + STATE(2286), 1, sym_string_literal, - STATE(2107), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(4779), 8, + ACTIONS(4799), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -168512,48 +170446,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66861] = 11, + [67558] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4538), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4813), 1, + ACTIONS(4851), 1, anon_sym_for, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - STATE(2108), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, + ACTIONS(3352), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66899] = 7, + [67596] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1311), 1, + ACTIONS(1289), 1, aux_sym_string_literal_token1, - ACTIONS(4815), 1, + ACTIONS(4853), 1, sym_crate, - STATE(2248), 1, + STATE(2286), 1, sym_string_literal, - STATE(2109), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4779), 8, + ACTIONS(4799), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -168562,100 +170496,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66929] = 11, + [67626] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4538), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4817), 1, + ACTIONS(4855), 1, anon_sym_for, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - STATE(2110), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, + ACTIONS(3352), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66967] = 11, + [67664] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4538), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4819), 1, + ACTIONS(4857), 1, anon_sym_for, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - STATE(2111), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, + ACTIONS(3352), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67005] = 11, + [67702] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4536), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4538), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4821), 1, + ACTIONS(4859), 1, anon_sym_for, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2000), 1, + STATE(2003), 1, sym_parameters, - STATE(2112), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, + ACTIONS(3352), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67043] = 6, + [67740] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4791), 1, anon_sym_COLON_COLON, - ACTIONS(4759), 1, + ACTIONS(4795), 1, anon_sym_COLON, - STATE(2113), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 9, + ACTIONS(4793), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168665,71 +170599,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67071] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(3022), 1, - anon_sym_SQUOTE, - ACTIONS(4715), 1, - sym_identifier, - ACTIONS(4719), 1, - anon_sym_const, - ACTIONS(4823), 1, - sym_metavariable, - STATE(1059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, - sym_attribute_item, - STATE(2603), 1, - sym_lifetime, - STATE(2114), 2, - sym_line_comment, - sym_block_comment, - STATE(3138), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67111] = 12, + [67768] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(3022), 1, - anon_sym_SQUOTE, - ACTIONS(4715), 1, - sym_identifier, - ACTIONS(4719), 1, - anon_sym_const, - ACTIONS(4751), 1, - sym_metavariable, - STATE(1482), 1, - sym_attribute_item, - STATE(2077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2450), 1, - sym_lifetime, - STATE(2115), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4861), 1, + anon_sym_BANG, + ACTIONS(4863), 1, + anon_sym_DOT_DOT, + ACTIONS(4867), 1, + anon_sym_COLON_COLON, + STATE(1997), 1, + sym_type_arguments, + ACTIONS(4865), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2144), 2, sym_line_comment, sym_block_comment, - STATE(2975), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67151] = 4, + ACTIONS(4596), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [67803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2116), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(1383), 11, + ACTIONS(4869), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168737,146 +170640,56 @@ 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, - [67175] = 6, + [67826] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 1, - anon_sym_DOT_DOT, - ACTIONS(3369), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2117), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3375), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4871), 10, + anon_sym_SEMI, + 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_COLON_COLON, - anon_sym_if, - [67203] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(3022), 1, - anon_sym_SQUOTE, - ACTIONS(4715), 1, - sym_identifier, - ACTIONS(4719), 1, - anon_sym_const, - ACTIONS(4721), 1, - sym_metavariable, - STATE(1482), 1, - sym_attribute_item, - STATE(2114), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2603), 1, - sym_lifetime, - STATE(2118), 2, - sym_line_comment, - sym_block_comment, - STATE(3144), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67243] = 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67849] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1311), 1, - aux_sym_string_literal_token1, - ACTIONS(4825), 1, - sym_crate, - STATE(2248), 1, - sym_string_literal, - STATE(2119), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(4779), 8, + ACTIONS(4873), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67273] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4829), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4831), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4833), 1, - sym_crate, - STATE(1482), 1, - sym_attribute_item, - STATE(2220), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2930), 1, - sym_enum_variant, - STATE(3513), 1, - sym_visibility_modifier, - STATE(2120), 2, - sym_line_comment, - sym_block_comment, - [67314] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4765), 1, - sym_identifier, - ACTIONS(4769), 1, - anon_sym_DOT_DOT, - ACTIONS(4773), 1, - sym_integer_literal, - ACTIONS(4835), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2432), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2121), 2, - sym_line_comment, - sym_block_comment, - STATE(3153), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67351] = 4, + anon_sym_else, + anon_sym_in, + [67872] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2122), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4837), 10, + ACTIONS(4875), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168887,15 +170700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67374] = 4, + [67895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2123), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 10, + ACTIONS(4877), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168906,15 +170719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67397] = 4, + [67918] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2124), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 10, + ACTIONS(4879), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168925,15 +170738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67420] = 4, + [67941] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2125), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4841), 10, + ACTIONS(4881), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168944,15 +170757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67443] = 4, + [67964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2126), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 10, + ACTIONS(4883), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168963,85 +170776,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67466] = 11, + [67987] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4765), 1, + ACTIONS(4831), 1, sym_identifier, - ACTIONS(4769), 1, + ACTIONS(4835), 1, anon_sym_DOT_DOT, - ACTIONS(4773), 1, + ACTIONS(4839), 1, sym_integer_literal, - ACTIONS(4845), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2432), 1, + STATE(2460), 1, aux_sym_enum_variant_list_repeat1, - STATE(2127), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - STATE(3153), 3, + STATE(3197), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67503] = 4, + [68024] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2128), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4847), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4889), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4891), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67526] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4849), 1, - anon_sym_BANG, - ACTIONS(4851), 1, - anon_sym_DOT_DOT, - ACTIONS(4855), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - ACTIONS(4853), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2129), 2, + ACTIONS(4893), 1, + sym_crate, + STATE(1433), 1, + sym_attribute_item, + STATE(2248), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3012), 1, + sym_enum_variant, + STATE(3487), 1, + sym_visibility_modifier, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(4562), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [67561] = 4, + [68065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2130), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(4857), 10, + ACTIONS(4895), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169052,15 +170849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67584] = 4, + [68088] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2131), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 10, + ACTIONS(4897), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169071,15 +170868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67607] = 4, + [68111] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2132), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 10, + ACTIONS(4899), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169090,15 +170887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67630] = 4, + [68134] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2133), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 10, + ACTIONS(4901), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169109,15 +170906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67653] = 4, + [68157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2134), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4865), 10, + ACTIONS(4803), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169128,15 +170925,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67676] = 4, + [68180] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2135), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + sym_identifier, + ACTIONS(4835), 1, + anon_sym_DOT_DOT, + ACTIONS(4839), 1, + sym_integer_literal, + ACTIONS(4903), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2460), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + STATE(3197), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68217] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 10, + ACTIONS(4905), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169147,15 +170970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67699] = 4, + [68240] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2136), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 10, + ACTIONS(4907), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169166,15 +170989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67722] = 4, + [68263] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2137), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 10, + ACTIONS(4787), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169185,15 +171008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67745] = 4, + [68286] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2138), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 10, + ACTIONS(4909), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169204,41 +171027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67768] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4765), 1, - sym_identifier, - ACTIONS(4769), 1, - anon_sym_DOT_DOT, - ACTIONS(4773), 1, - sym_integer_literal, - ACTIONS(4875), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2432), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2139), 2, - sym_line_comment, - sym_block_comment, - STATE(3153), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67805] = 4, + [68309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(4877), 10, + ACTIONS(4793), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169249,15 +171046,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67828] = 4, + [68332] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2141), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4911), 1, + anon_sym_LBRACE, + STATE(1996), 1, + sym_type_arguments, + STATE(2009), 1, + sym_parameters, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 10, + ACTIONS(3425), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [68365] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2167), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4913), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169268,15 +171089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67851] = 4, + [68388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2142), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 10, + ACTIONS(4915), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169287,61 +171108,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67874] = 8, + [68411] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4048), 1, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(2172), 1, + sym_block, + STATE(3709), 1, + sym_label, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68442] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4230), 1, - anon_sym_COLON_COLON, - ACTIONS(4879), 1, + ACTIONS(4600), 1, anon_sym_BANG, - STATE(1603), 1, + ACTIONS(4679), 1, + anon_sym_COLON_COLON, + STATE(1997), 1, sym_type_arguments, - STATE(2143), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67905] = 8, + [68473] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, + ACTIONS(3362), 1, anon_sym_LT2, - ACTIONS(3554), 1, + ACTIONS(3572), 1, anon_sym_COLON_COLON, - ACTIONS(4881), 1, + ACTIONS(4917), 1, anon_sym_BANG, - STATE(1308), 1, + STATE(1106), 1, sym_type_arguments, - STATE(2144), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67936] = 4, + [68504] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2145), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 10, + ACTIONS(1481), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169352,15 +171196,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67959] = 4, + [68527] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2146), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + sym_identifier, + ACTIONS(4835), 1, + anon_sym_DOT_DOT, + ACTIONS(4839), 1, + sym_integer_literal, + ACTIONS(4919), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2460), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2173), 2, + sym_line_comment, + sym_block_comment, + STATE(3197), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68564] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 10, + ACTIONS(4921), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169371,15 +171241,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67982] = 4, + [68587] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2147), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + sym_identifier, + ACTIONS(4835), 1, + anon_sym_DOT_DOT, + ACTIONS(4839), 1, + sym_integer_literal, + ACTIONS(4923), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2460), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2175), 2, + sym_line_comment, + sym_block_comment, + STATE(3197), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68624] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4580), 1, + anon_sym_LPAREN, + ACTIONS(4584), 1, + anon_sym_COLON, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(4925), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4578), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [68659] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4887), 10, + ACTIONS(4927), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169390,43 +171311,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68005] = 13, + [68682] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4889), 1, + ACTIONS(4929), 1, sym_identifier, - ACTIONS(4891), 1, + ACTIONS(4931), 1, anon_sym_RBRACE, - ACTIONS(4893), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2242), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(2826), 1, + STATE(2919), 1, sym_field_declaration, - STATE(3465), 1, + STATE(3634), 1, sym_visibility_modifier, - STATE(2148), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - [68046] = 4, + [68723] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2149), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4895), 10, + ACTIONS(4935), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169437,15 +171358,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68069] = 4, + [68746] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2150), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(4937), 1, + anon_sym_RBRACE, + ACTIONS(4939), 1, + anon_sym_COMMA, + STATE(1433), 1, + sym_attribute_item, + STATE(2256), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2857), 1, + sym_enum_variant, + STATE(3487), 1, + sym_visibility_modifier, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 10, + [68787] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2181), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4941), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169456,15 +171405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68092] = 4, + [68810] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2151), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4899), 10, + ACTIONS(4943), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169475,40 +171424,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68115] = 10, + [68833] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4546), 1, - anon_sym_LPAREN, - ACTIONS(4550), 1, - anon_sym_COLON, - ACTIONS(4554), 1, + ACTIONS(4602), 1, anon_sym_DOT_DOT, - ACTIONS(4901), 1, + ACTIONS(4693), 1, anon_sym_COLON_COLON, - ACTIONS(4556), 2, + STATE(1997), 1, + sym_type_arguments, + ACTIONS(4604), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2152), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 3, - anon_sym_RPAREN, + ACTIONS(4596), 3, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [68150] = 4, + [68868] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2153), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 10, + ACTIONS(4945), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169519,38 +171468,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68173] = 8, + [68891] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4566), 1, - anon_sym_BANG, - ACTIONS(4647), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - STATE(2154), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(4929), 1, + sym_identifier, + ACTIONS(4947), 1, + anon_sym_RBRACE, + ACTIONS(4949), 1, + anon_sym_COMMA, + STATE(1433), 1, + sym_attribute_item, + STATE(2259), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2867), 1, + sym_field_declaration, + STATE(3634), 1, + sym_visibility_modifier, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68204] = 4, + [68932] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2155), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(4905), 10, + ACTIONS(4951), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169561,15 +171515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68227] = 4, + [68955] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2156), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 10, + ACTIONS(4953), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169580,15 +171534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68250] = 4, + [68978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2157), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4907), 10, + ACTIONS(4955), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169599,64 +171553,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68273] = 10, + [69001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4566), 1, - anon_sym_BANG, - ACTIONS(4568), 1, - anon_sym_DOT_DOT, - ACTIONS(4661), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2158), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4562), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [68308] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4909), 1, - anon_sym_LBRACE, - STATE(1973), 1, - sym_type_arguments, - STATE(2003), 1, - sym_parameters, - STATE(2159), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 5, + ACTIONS(4957), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [68341] = 4, + anon_sym_else, + anon_sym_in, + [69024] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2160), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4911), 10, + ACTIONS(4959), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169667,38 +171591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68364] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(2142), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2161), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68395] = 4, + [69047] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2162), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(4913), 10, + ACTIONS(4961), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169709,41 +171610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68418] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4765), 1, - sym_identifier, - ACTIONS(4769), 1, - anon_sym_DOT_DOT, - ACTIONS(4773), 1, - sym_integer_literal, - ACTIONS(4915), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2432), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2163), 2, - sym_line_comment, - sym_block_comment, - STATE(3153), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68455] = 4, + [69070] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2164), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4917), 10, + ACTIONS(4578), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169754,15 +171629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68478] = 4, + [69093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2165), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 10, + ACTIONS(4963), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169773,15 +171648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68501] = 4, + [69116] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2166), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 10, + ACTIONS(4965), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169792,227 +171667,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68524] = 13, + [69139] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(4210), 1, + anon_sym_COLON_COLON, + ACTIONS(4967), 1, + anon_sym_BANG, + STATE(1631), 1, + sym_type_arguments, + STATE(2195), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69170] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4889), 1, + ACTIONS(4929), 1, sym_identifier, - ACTIONS(4921), 1, + ACTIONS(4969), 1, anon_sym_RBRACE, - ACTIONS(4923), 1, - anon_sym_COMMA, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2252), 1, + STATE(2285), 1, aux_sym_enum_variant_list_repeat1, - STATE(3036), 1, + STATE(3265), 1, sym_field_declaration, - STATE(3465), 1, + STATE(3634), 1, sym_visibility_modifier, - STATE(2167), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - [68565] = 4, + [69208] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2168), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(4929), 1, + sym_identifier, + ACTIONS(4971), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2285), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3265), 1, + sym_field_declaration, + STATE(3634), 1, + sym_visibility_modifier, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + [69246] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3425), 1, + anon_sym_PLUS, + ACTIONS(4596), 1, anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4598), 1, + anon_sym_COLON, + ACTIONS(4602), 1, + anon_sym_DOT_DOT, + ACTIONS(4606), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4973), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68588] = 4, + STATE(2198), 2, + sym_line_comment, + sym_block_comment, + [69280] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2169), 2, + ACTIONS(4976), 1, + anon_sym_SEMI, + ACTIONS(4978), 1, + anon_sym_LPAREN, + ACTIONS(4980), 1, + anon_sym_LBRACE, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, + anon_sym_where, + STATE(1124), 1, + sym_field_declaration_list, + STATE(2323), 1, + sym_type_parameters, + STATE(3114), 1, + sym_ordered_field_declaration_list, + STATE(3395), 1, + sym_where_clause, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 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, - [68611] = 4, + [69318] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(4986), 1, + anon_sym_COLON_COLON, + STATE(1631), 1, + sym_type_arguments, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69346] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4602), 1, + anon_sym_DOT_DOT, + ACTIONS(4693), 1, + anon_sym_COLON_COLON, + ACTIONS(4973), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3425), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4596), 2, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68634] = 13, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(4604), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2201), 2, + sym_line_comment, + sym_block_comment, + [69378] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4988), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_LBRACE, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(3497), 1, + sym_macro_rule, + ACTIONS(4991), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4933), 1, - anon_sym_COMMA, - STATE(1482), 1, - sym_attribute_item, - STATE(2228), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2814), 1, - sym_enum_variant, - STATE(3513), 1, - sym_visibility_modifier, - STATE(2171), 2, + STATE(2202), 3, sym_line_comment, sym_block_comment, - [68675] = 12, + aux_sym_macro_definition_repeat1, + [69410] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, - anon_sym_SEMI, - ACTIONS(4937), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(4939), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, + ACTIONS(4982), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - STATE(661), 1, + ACTIONS(4999), 1, + anon_sym_SEMI, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(716), 1, sym_field_declaration_list, - STATE(2328), 1, + STATE(2302), 1, sym_type_parameters, - STATE(3049), 1, + STATE(2920), 1, sym_ordered_field_declaration_list, - STATE(3300), 1, + STATE(3275), 1, sym_where_clause, - STATE(2172), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - [68713] = 10, + [69448] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4765), 1, - sym_identifier, - ACTIONS(4769), 1, - anon_sym_DOT_DOT, - ACTIONS(4773), 1, - sym_integer_literal, - STATE(1482), 1, - sym_attribute_item, - STATE(2432), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2173), 2, + ACTIONS(5003), 1, + anon_sym_SEMI, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym_declaration_list, + STATE(2204), 2, sym_line_comment, sym_block_comment, - STATE(3153), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68747] = 7, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69476] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, + ACTIONS(5007), 1, anon_sym_SEMI, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1302), 1, + STATE(1131), 1, sym_declaration_list, - STATE(2174), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68775] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69504] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4889), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2268), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3212), 1, - sym_field_declaration, - STATE(3465), 1, - sym_visibility_modifier, - STATE(2175), 2, + ACTIONS(5013), 1, + anon_sym_PLUS, + STATE(2222), 1, + aux_sym_trait_bounds_repeat1, + STATE(2206), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5011), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69530] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5015), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(2009), 1, + sym_parameters, + STATE(2207), 2, sym_line_comment, sym_block_comment, - [68813] = 5, + ACTIONS(3425), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 1, + ACTIONS(3413), 1, anon_sym_DOT_DOT, - STATE(2176), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(3383), 8, + ACTIONS(3415), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -170021,17 +171989,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [68837] = 5, + [69586] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3362), 1, + anon_sym_LT2, + ACTIONS(5017), 1, + anon_sym_COLON_COLON, + STATE(1106), 1, + sym_type_arguments, + STATE(2209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 1, + ACTIONS(3437), 1, anon_sym_DOT_DOT, - STATE(2177), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 8, + ACTIONS(3439), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -170040,238 +172029,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [68861] = 12, + [69638] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4951), 1, - anon_sym_SEMI, - ACTIONS(4953), 1, - anon_sym_LBRACE, - STATE(1077), 1, - sym_field_declaration_list, - STATE(2308), 1, - sym_type_parameters, - STATE(2835), 1, - sym_ordered_field_declaration_list, - STATE(3333), 1, - sym_where_clause, - STATE(2178), 2, - sym_line_comment, - sym_block_comment, - [68899] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4957), 1, - anon_sym_PLUS, - STATE(2200), 1, - aux_sym_trait_bounds_repeat1, - STATE(2179), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5019), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(2009), 1, + sym_parameters, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(4955), 7, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [68925] = 11, + [69670] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4562), 1, - anon_sym_PIPE, - ACTIONS(4564), 1, - anon_sym_COLON, - ACTIONS(4566), 1, - anon_sym_BANG, - ACTIONS(4568), 1, - anon_sym_DOT_DOT, - ACTIONS(4669), 1, + ACTIONS(5021), 1, anon_sym_COLON_COLON, - STATE(1972), 1, + STATE(1997), 1, sym_type_arguments, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2180), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - [68961] = 9, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69698] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_BANG, - ACTIONS(4705), 1, - anon_sym_DOT_DOT, - ACTIONS(4959), 1, - anon_sym_COLON_COLON, - ACTIONS(4707), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2181), 2, + ACTIONS(4980), 1, + anon_sym_LBRACE, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5023), 1, + anon_sym_SEMI, + STATE(1170), 1, + sym_field_declaration_list, + STATE(2344), 1, + sym_type_parameters, + STATE(2874), 1, + sym_ordered_field_declaration_list, + STATE(3350), 1, + sym_where_clause, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [68993] = 12, + [69736] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4827), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4961), 1, + ACTIONS(5025), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2226), 1, + STATE(2260), 1, aux_sym_enum_variant_list_repeat1, - STATE(3365), 1, + STATE(3132), 1, sym_enum_variant, - STATE(3513), 1, + STATE(3487), 1, sym_visibility_modifier, - STATE(2182), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - [69031] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69774] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4889), 1, + ACTIONS(4831), 1, sym_identifier, - ACTIONS(4963), 1, - anon_sym_RBRACE, - STATE(1482), 1, + ACTIONS(4835), 1, + anon_sym_DOT_DOT, + ACTIONS(4839), 1, + sym_integer_literal, + STATE(1433), 1, sym_attribute_item, - STATE(2268), 1, + STATE(2460), 1, aux_sym_enum_variant_list_repeat1, - STATE(3212), 1, - sym_field_declaration, - STATE(3465), 1, - sym_visibility_modifier, - STATE(2183), 2, + STATE(2215), 2, + sym_line_comment, + sym_block_comment, + STATE(3197), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69808] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4596), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_COLON, + ACTIONS(4602), 1, + anon_sym_DOT_DOT, + ACTIONS(4701), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2216), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3425), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [69840] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3421), 1, + anon_sym_DOT_DOT, + STATE(2217), 2, sym_line_comment, sym_block_comment, - [69069] = 12, + ACTIONS(3423), 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, + [69864] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4889), 1, + ACTIONS(4929), 1, sym_identifier, - ACTIONS(4965), 1, + ACTIONS(5027), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2268), 1, + STATE(2285), 1, aux_sym_enum_variant_list_repeat1, - STATE(3212), 1, + STATE(3265), 1, sym_field_declaration, - STATE(3465), 1, + STATE(3634), 1, sym_visibility_modifier, - STATE(2184), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - [69107] = 7, + [69902] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4048), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4967), 1, + ACTIONS(4596), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_COLON, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_DOT_DOT, + ACTIONS(4701), 1, anon_sym_COLON_COLON, - STATE(1603), 1, + STATE(1997), 1, sym_type_arguments, - STATE(2185), 2, + ACTIONS(4604), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69135] = 12, + [69938] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3457), 1, + anon_sym_DOT_DOT, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3459), 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, + [69962] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4827), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4969), 1, + ACTIONS(5029), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2226), 1, + STATE(2260), 1, aux_sym_enum_variant_list_repeat1, - STATE(3365), 1, + STATE(3132), 1, sym_enum_variant, - STATE(3513), 1, + STATE(3487), 1, sym_visibility_modifier, - STATE(2186), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - [69173] = 6, + [70000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5033), 1, anon_sym_PLUS, - STATE(2200), 1, - aux_sym_trait_bounds_repeat1, - STATE(2187), 2, + STATE(2222), 3, sym_line_comment, sym_block_comment, - ACTIONS(4955), 7, + aux_sym_trait_bounds_repeat1, + ACTIONS(5031), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -170279,107 +172306,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69199] = 7, + [70024] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4973), 1, - anon_sym_SEMI, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_declaration_list, - STATE(2188), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(4929), 1, + sym_identifier, + ACTIONS(5036), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2285), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3265), 1, + sym_field_declaration, + STATE(3634), 1, + sym_visibility_modifier, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69227] = 12, + [70062] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4939), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4977), 1, - anon_sym_SEMI, - STATE(563), 1, - sym_field_declaration_list, - STATE(2304), 1, - sym_type_parameters, - STATE(2808), 1, - sym_ordered_field_declaration_list, - STATE(3197), 1, - sym_where_clause, - STATE(2189), 2, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_DOT_DOT, + ACTIONS(5038), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2224), 2, sym_line_comment, sym_block_comment, - [69265] = 5, + ACTIONS(4578), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70094] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 1, - anon_sym_DOT_DOT, - STATE(2190), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(5040), 1, + anon_sym_SEMI, + STATE(689), 1, + sym_declaration_list, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3363), 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, - [69289] = 9, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70122] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4562), 1, - anon_sym_PIPE, - ACTIONS(4564), 1, - anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_DOT_DOT, - ACTIONS(4669), 1, - anon_sym_COLON_COLON, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2191), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(5042), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2260), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3132), 1, + sym_enum_variant, + STATE(3487), 1, + sym_visibility_modifier, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [69321] = 5, + [70160] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4981), 1, + ACTIONS(5013), 1, anon_sym_PLUS, - STATE(2192), 3, + STATE(2206), 1, + aux_sym_trait_bounds_repeat1, + STATE(2227), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4979), 7, + ACTIONS(5044), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -170387,86 +172422,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69345] = 9, + [70186] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4984), 1, + ACTIONS(5046), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(2193), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69377] = 7, + [70218] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(4986), 1, - anon_sym_SEMI, - STATE(1340), 1, - sym_declaration_list, - STATE(2194), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(5048), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2260), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3132), 1, + sym_enum_variant, + STATE(3487), 1, + sym_visibility_modifier, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69405] = 9, + [70256] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4546), 1, - anon_sym_LPAREN, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(4988), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2195), 2, + ACTIONS(5050), 1, + anon_sym_PLUS, + STATE(2206), 1, + aux_sym_trait_bounds_repeat1, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 3, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(5044), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [69437] = 6, + anon_sym_SQUOTE, + anon_sym_where, + [70282] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4990), 1, + ACTIONS(5052), 1, anon_sym_PLUS, - STATE(2200), 1, + STATE(2206), 1, aux_sym_trait_bounds_repeat1, - STATE(2196), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(4955), 7, + ACTIONS(5044), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -170474,938 +172511,835 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69463] = 12, + [70308] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2226), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3365), 1, - sym_enum_variant, - STATE(3513), 1, - sym_visibility_modifier, - STATE(2197), 2, - sym_line_comment, - sym_block_comment, - [69501] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4827), 1, + ACTIONS(4929), 1, sym_identifier, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4994), 1, + ACTIONS(5054), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2226), 1, + STATE(2285), 1, aux_sym_enum_variant_list_repeat1, - STATE(3365), 1, - sym_enum_variant, - STATE(3513), 1, + STATE(3265), 1, + sym_field_declaration, + STATE(3634), 1, sym_visibility_modifier, - STATE(2198), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - [69539] = 7, + [70346] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, - anon_sym_LT2, - ACTIONS(4996), 1, - anon_sym_COLON_COLON, - STATE(1308), 1, - sym_type_arguments, - STATE(2199), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5056), 1, + anon_sym_SEMI, + STATE(1104), 1, + sym_declaration_list, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69567] = 6, + [70374] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4957), 1, - anon_sym_PLUS, - STATE(2192), 1, - aux_sym_trait_bounds_repeat1, - STATE(2200), 2, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4580), 1, + anon_sym_LPAREN, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5058), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4578), 3, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69593] = 12, + [70406] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4889), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(5000), 1, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(5060), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2268), 1, + STATE(2260), 1, aux_sym_enum_variant_list_repeat1, - STATE(3212), 1, - sym_field_declaration, - STATE(3465), 1, + STATE(3132), 1, + sym_enum_variant, + STATE(3487), 1, sym_visibility_modifier, - STATE(2201), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - [69631] = 12, + [70444] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(4941), 1, + ACTIONS(4982), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4953), 1, + ACTIONS(5001), 1, anon_sym_LBRACE, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(675), 1, sym_field_declaration_list, - STATE(2299), 1, + STATE(2349), 1, sym_type_parameters, - STATE(3089), 1, + STATE(2985), 1, sym_ordered_field_declaration_list, - STATE(3371), 1, + STATE(3178), 1, sym_where_clause, - STATE(2202), 2, - sym_line_comment, - sym_block_comment, - [69669] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3373), 1, - anon_sym_DOT_DOT, - STATE(2203), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3375), 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, - [69693] = 7, + [70482] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5004), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - STATE(2204), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(4929), 1, + sym_identifier, + ACTIONS(5064), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2285), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3265), 1, + sym_field_declaration, + STATE(3634), 1, + sym_visibility_modifier, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69721] = 9, + [70520] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5006), 1, + ACTIONS(5066), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(2205), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69753] = 9, + [70552] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5008), 1, + ACTIONS(5068), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(2206), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69785] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_SEMI, - STATE(696), 1, - sym_declaration_list, - STATE(2207), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69813] = 9, + [70584] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5012), 1, + ACTIONS(5070), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(2208), 2, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69845] = 9, + [70616] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5014), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(2003), 1, - sym_parameters, - STATE(2209), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(1433), 1, + sym_attribute_item, + STATE(2260), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3132), 1, + sym_enum_variant, + STATE(3487), 1, + sym_visibility_modifier, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69877] = 9, + [70654] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5016), 1, + ACTIONS(5074), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(2210), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69909] = 9, + [70686] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5018), 1, + ACTIONS(5076), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(2003), 1, + STATE(2009), 1, sym_parameters, - STATE(2211), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69941] = 9, + [70718] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5020), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(2003), 1, - sym_parameters, - STATE(2212), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5078), 1, anon_sym_SEMI, + ACTIONS(5080), 1, anon_sym_LBRACE, + ACTIONS(5082), 1, anon_sym_PLUS, - anon_sym_where, - [69973] = 10, + STATE(1362), 1, + sym_block, + STATE(2523), 1, + sym_where_clause, + STATE(3716), 1, + sym_label, + STATE(2244), 2, + sym_line_comment, + sym_block_comment, + [70753] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_PLUS, - ACTIONS(4562), 1, - anon_sym_PIPE, - ACTIONS(4564), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(4568), 1, + ACTIONS(5086), 1, + anon_sym_LT, + STATE(1225), 1, + sym_declaration_list, + STATE(2405), 1, + sym_type_parameters, + STATE(2658), 1, + sym_trait_bounds, + STATE(3254), 1, + sym_where_clause, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + [70788] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5090), 1, + anon_sym_RBRACE, + ACTIONS(5092), 1, anon_sym_DOT_DOT, - ACTIONS(4572), 1, - anon_sym_COLON_COLON, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5022), 2, - anon_sym_RPAREN, + ACTIONS(5094), 1, anon_sym_COMMA, - STATE(2213), 2, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + STATE(2246), 2, sym_line_comment, sym_block_comment, - [70007] = 9, + STATE(2831), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70821] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5025), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_LBRACE, - STATE(3625), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - ACTIONS(5028), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2214), 3, + STATE(2247), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [70039] = 12, + ACTIONS(5031), 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, + [70842] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4827), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(5036), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2226), 1, + STATE(1074), 1, aux_sym_enum_variant_list_repeat1, - STATE(3365), 1, + STATE(1433), 1, + sym_attribute_item, + STATE(3088), 1, sym_enum_variant, - STATE(3513), 1, + STATE(3487), 1, sym_visibility_modifier, - STATE(2215), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [70077] = 9, + [70877] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_DOT_DOT, - ACTIONS(4661), 1, - anon_sym_COLON_COLON, - ACTIONS(5022), 1, - anon_sym_RBRACK, - ACTIONS(3365), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4562), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4570), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2216), 2, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5104), 1, + anon_sym_DASH_GT, + STATE(547), 1, + sym_block, + STATE(2474), 1, + sym_where_clause, + STATE(3713), 1, + sym_label, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [70109] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70912] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4889), 1, - sym_identifier, - ACTIONS(5038), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2268), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3212), 1, - sym_field_declaration, - STATE(3465), 1, - sym_visibility_modifier, - STATE(2217), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5106), 1, + anon_sym_SEMI, + ACTIONS(5108), 1, + anon_sym_DASH_GT, + STATE(643), 1, + sym_block, + STATE(2553), 1, + sym_where_clause, + STATE(3713), 1, + sym_label, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [70147] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4889), 1, - sym_identifier, - ACTIONS(5040), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2268), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3212), 1, - sym_field_declaration, - STATE(3465), 1, - sym_visibility_modifier, - STATE(2218), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - [70185] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5031), 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, + [70968] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(5042), 1, - anon_sym_RBRACE, - STATE(1482), 1, - sym_attribute_item, - STATE(2226), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3365), 1, - sym_enum_variant, - STATE(3513), 1, - sym_visibility_modifier, - STATE(2219), 2, + ACTIONS(5113), 1, + anon_sym_fn, + ACTIONS(5115), 1, + anon_sym_extern, + STATE(2398), 1, + sym_extern_modifier, + STATE(2252), 3, sym_line_comment, sym_block_comment, - [70223] = 11, - ACTIONS(69), 1, - anon_sym_pub, + aux_sym_function_modifiers_repeat1, + ACTIONS(5110), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [70995] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4833), 1, - sym_crate, - STATE(1059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, - sym_attribute_item, - STATE(2795), 1, - sym_enum_variant, - STATE(3513), 1, - sym_visibility_modifier, - STATE(2220), 2, + ACTIONS(1289), 1, + aux_sym_string_literal_token1, + STATE(2286), 1, + sym_string_literal, + STATE(2253), 2, sym_line_comment, sym_block_comment, - [70258] = 10, + ACTIONS(4799), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71020] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5088), 1, sym_identifier, - ACTIONS(5046), 1, - anon_sym_RBRACE, - ACTIONS(5048), 1, + ACTIONS(5092), 1, anon_sym_DOT_DOT, - ACTIONS(5050), 1, - anon_sym_COMMA, - ACTIONS(5052), 1, + ACTIONS(5096), 1, anon_sym_ref, - ACTIONS(5054), 1, + ACTIONS(5098), 1, sym_mutable_specifier, - STATE(2221), 2, + ACTIONS(5118), 1, + anon_sym_RBRACE, + ACTIONS(5120), 1, + anon_sym_COMMA, + STATE(2254), 2, sym_line_comment, sym_block_comment, - STATE(2933), 2, + STATE(2846), 2, sym_field_pattern, sym_remaining_field_pattern, - [70291] = 11, + [71053] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5056), 1, - anon_sym_SEMI, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - STATE(1196), 1, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5122), 1, + anon_sym_SEMI, + STATE(578), 1, sym_block, - STATE(2482), 1, + STATE(2557), 1, sym_where_clause, - STATE(3671), 1, + STATE(3713), 1, sym_label, - STATE(2222), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - [70326] = 11, + [71088] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5062), 1, - anon_sym_SEMI, - STATE(1266), 1, - sym_block, - STATE(2534), 1, - sym_where_clause, - STATE(3671), 1, - sym_label, - STATE(2223), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4893), 1, + sym_crate, + STATE(1074), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1433), 1, + sym_attribute_item, + STATE(2900), 1, + sym_enum_variant, + STATE(3487), 1, + sym_visibility_modifier, + STATE(2256), 2, sym_line_comment, sym_block_comment, - [70361] = 11, + [71123] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5060), 1, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5064), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5066), 1, - anon_sym_LBRACE, - STATE(591), 1, + STATE(1235), 1, sym_block, - STATE(2527), 1, + STATE(2476), 1, sym_where_clause, - STATE(3668), 1, + STATE(3716), 1, sym_label, - STATE(2224), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - [70396] = 11, + [71158] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5068), 1, - anon_sym_SEMI, - STATE(771), 1, - sym_block, - STATE(2528), 1, - sym_where_clause, - STATE(3668), 1, - sym_label, - STATE(2225), 2, + ACTIONS(5126), 1, + anon_sym_fn, + ACTIONS(5128), 1, + anon_sym_extern, + STATE(2252), 1, + aux_sym_function_modifiers_repeat1, + STATE(2398), 1, + sym_extern_modifier, + STATE(2258), 2, sym_line_comment, sym_block_comment, - [70431] = 11, + ACTIONS(4610), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [71187] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - STATE(1059), 1, + ACTIONS(4929), 1, + sym_identifier, + STATE(1074), 1, aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(3345), 1, - sym_enum_variant, - STATE(3513), 1, + STATE(2910), 1, + sym_field_declaration, + STATE(3634), 1, sym_visibility_modifier, - STATE(2226), 2, - sym_line_comment, - sym_block_comment, - [70466] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, - anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5070), 1, - anon_sym_RBRACE, - ACTIONS(5072), 1, - anon_sym_COMMA, - STATE(2227), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - STATE(2971), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70499] = 11, + [71222] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4827), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - STATE(1059), 1, + STATE(1074), 1, aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(2857), 1, + STATE(3232), 1, sym_enum_variant, - STATE(3513), 1, + STATE(3487), 1, sym_visibility_modifier, - STATE(2228), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - [70534] = 11, + [71257] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5076), 1, - anon_sym_LT, - STATE(1333), 1, - sym_declaration_list, - STATE(2427), 1, - sym_type_parameters, - STATE(2577), 1, - sym_trait_bounds, - STATE(3381), 1, - sym_where_clause, - STATE(2229), 2, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(4861), 1, + anon_sym_BANG, + STATE(2261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71282] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4624), 1, + anon_sym_trait, + ACTIONS(5130), 1, + anon_sym_impl, + STATE(2262), 2, sym_line_comment, sym_block_comment, - [70569] = 11, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5078), 1, - anon_sym_SEMI, - ACTIONS(5080), 1, - anon_sym_DASH_GT, - STATE(1124), 1, - sym_block, - STATE(2470), 1, - sym_where_clause, - STATE(3671), 1, - sym_label, - STATE(2230), 2, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [70604] = 11, + ACTIONS(5031), 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, + [71328] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5082), 1, + ACTIONS(5132), 1, anon_sym_SEMI, - STATE(1276), 1, + ACTIONS(5134), 1, + anon_sym_DASH_GT, + STATE(1265), 1, sym_block, - STATE(2486), 1, + STATE(2504), 1, sym_where_clause, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2231), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - [70639] = 11, + [71363] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5066), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5084), 1, + ACTIONS(5136), 1, anon_sym_SEMI, - ACTIONS(5086), 1, + ACTIONS(5138), 1, anon_sym_DASH_GT, - STATE(614), 1, + STATE(1279), 1, sym_block, - STATE(2453), 1, + STATE(2520), 1, sym_where_clause, - STATE(3668), 1, + STATE(3716), 1, sym_label, - STATE(2232), 2, - sym_line_comment, - sym_block_comment, - [70674] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5076), 1, - anon_sym_LT, - ACTIONS(5088), 1, - anon_sym_SEMI, - ACTIONS(5090), 1, - anon_sym_EQ, - STATE(2382), 1, - sym_type_parameters, - STATE(2790), 1, - sym_trait_bounds, - STATE(3437), 1, - sym_where_clause, - STATE(2233), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [70709] = 11, + [71398] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5092), 1, + ACTIONS(5140), 1, anon_sym_SEMI, - ACTIONS(5094), 1, + ACTIONS(5142), 1, anon_sym_DASH_GT, - STATE(1174), 1, + STATE(731), 1, sym_block, - STATE(2479), 1, + STATE(2541), 1, sym_where_clause, - STATE(3671), 1, + STATE(3713), 1, sym_label, - STATE(2234), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [70744] = 11, + [71433] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5076), 1, + ACTIONS(5086), 1, anon_sym_LT, - ACTIONS(5096), 1, + ACTIONS(5144), 1, anon_sym_SEMI, - ACTIONS(5098), 1, + ACTIONS(5146), 1, anon_sym_EQ, - STATE(2415), 1, + STATE(2358), 1, sym_type_parameters, - STATE(3061), 1, + STATE(3084), 1, sym_trait_bounds, - STATE(3540), 1, + STATE(3328), 1, sym_where_clause, - STATE(2235), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, - [70779] = 4, + [71468] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2236), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 8, + ACTIONS(5031), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -171414,26544 +173348,26742 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [70800] = 11, + [71489] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5100), 1, - anon_sym_SEMI, - STATE(1229), 1, - sym_block, - STATE(2483), 1, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LT, + STATE(666), 1, + sym_declaration_list, + STATE(2423), 1, + sym_type_parameters, + STATE(2632), 1, + sym_trait_bounds, + STATE(3306), 1, sym_where_clause, - STATE(3671), 1, - sym_label, - STATE(2237), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - [70835] = 11, + [71524] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5066), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5102), 1, - anon_sym_SEMI, - STATE(684), 1, - sym_block, - STATE(2532), 1, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LT, + STATE(1125), 1, + sym_declaration_list, + STATE(2409), 1, + sym_type_parameters, + STATE(2628), 1, + sym_trait_bounds, + STATE(3398), 1, sym_where_clause, - STATE(3668), 1, - sym_label, - STATE(2238), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - [70870] = 11, + [71559] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5066), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5104), 1, + ACTIONS(5148), 1, anon_sym_SEMI, - ACTIONS(5106), 1, - anon_sym_DASH_GT, - STATE(742), 1, + STATE(687), 1, sym_block, - STATE(2516), 1, + STATE(2486), 1, sym_where_clause, - STATE(3668), 1, + STATE(3713), 1, sym_label, - STATE(2239), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - [70905] = 11, + [71594] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5108), 1, + ACTIONS(5150), 1, anon_sym_SEMI, - STATE(1286), 1, + STATE(1287), 1, sym_block, - STATE(2487), 1, + STATE(2543), 1, sym_where_clause, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2240), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - [70940] = 11, + [71629] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5076), 1, + ACTIONS(5086), 1, anon_sym_LT, - STATE(550), 1, + STATE(1163), 1, sym_declaration_list, - STATE(2419), 1, + STATE(2441), 1, sym_type_parameters, - STATE(2771), 1, + STATE(2644), 1, sym_trait_bounds, - STATE(3348), 1, + STATE(3313), 1, sym_where_clause, - STATE(2241), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [70975] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [71664] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4889), 1, - sym_identifier, - STATE(1059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, - sym_attribute_item, - STATE(2870), 1, - sym_field_declaration, - STATE(3465), 1, - sym_visibility_modifier, - STATE(2242), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_SEMI, + ACTIONS(5154), 1, + anon_sym_EQ, + STATE(2410), 1, + sym_type_parameters, + STATE(3123), 1, + sym_trait_bounds, + STATE(3404), 1, + sym_where_clause, + STATE(2274), 2, sym_line_comment, sym_block_comment, - [71010] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [71699] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4827), 1, + ACTIONS(5088), 1, sym_identifier, - ACTIONS(4833), 1, - sym_crate, - STATE(1482), 1, - sym_attribute_item, - STATE(2226), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3365), 1, - sym_enum_variant, - STATE(3513), 1, - sym_visibility_modifier, - STATE(2243), 2, - sym_line_comment, - sym_block_comment, - [71045] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2244), 2, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5156), 1, + anon_sym_RBRACE, + ACTIONS(5158), 1, + anon_sym_COMMA, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 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, - [71066] = 11, + STATE(2897), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71732] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5066), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, + ACTIONS(5160), 1, anon_sym_SEMI, - STATE(503), 1, + STATE(601), 1, sym_block, - STATE(2442), 1, + STATE(2531), 1, sym_where_clause, - STATE(3668), 1, + STATE(3713), 1, sym_label, - STATE(2245), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - [71101] = 11, + [71767] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5162), 1, anon_sym_SEMI, - ACTIONS(5114), 1, - anon_sym_DASH_GT, - STATE(1238), 1, + STATE(1322), 1, sym_block, - STATE(2484), 1, + STATE(2556), 1, sym_where_clause, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2246), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - [71136] = 11, + [71802] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5066), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5164), 1, anon_sym_SEMI, - ACTIONS(5118), 1, + ACTIONS(5166), 1, anon_sym_DASH_GT, - STATE(609), 1, + STATE(1332), 1, sym_block, - STATE(2471), 1, + STATE(2560), 1, sym_where_clause, - STATE(3668), 1, + STATE(3716), 1, sym_label, - STATE(2247), 2, - sym_line_comment, - sym_block_comment, - [71171] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2248), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(5120), 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, - [71192] = 11, + [71837] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5066), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5122), 1, - anon_sym_SEMI, - ACTIONS(5124), 1, - anon_sym_DASH_GT, - STATE(759), 1, - sym_block, - STATE(2523), 1, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LT, + STATE(676), 1, + sym_declaration_list, + STATE(2413), 1, + sym_type_parameters, + STATE(2575), 1, + sym_trait_bounds, + STATE(3218), 1, sym_where_clause, - STATE(3668), 1, - sym_label, - STATE(2249), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - [71227] = 11, + [71872] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5066), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5126), 1, + ACTIONS(5168), 1, anon_sym_SEMI, - STATE(704), 1, + ACTIONS(5170), 1, + anon_sym_DASH_GT, + STATE(742), 1, sym_block, - STATE(2491), 1, + STATE(2524), 1, sym_where_clause, - STATE(3668), 1, + STATE(3713), 1, sym_label, - STATE(2250), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [71262] = 11, + [71907] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5076), 1, + ACTIONS(5086), 1, anon_sym_LT, - STATE(1133), 1, + STATE(652), 1, sym_declaration_list, - STATE(2364), 1, + STATE(2448), 1, sym_type_parameters, - STATE(2560), 1, + STATE(2677), 1, sym_trait_bounds, - STATE(3213), 1, + STATE(3210), 1, sym_where_clause, - STATE(2251), 2, - sym_line_comment, - sym_block_comment, - [71297] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(4833), 1, - sym_crate, - ACTIONS(4889), 1, - sym_identifier, - STATE(1059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, - sym_attribute_item, - STATE(2920), 1, - sym_field_declaration, - STATE(3465), 1, - sym_visibility_modifier, - STATE(2252), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - [71332] = 11, + [71942] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5066), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5172), 1, anon_sym_SEMI, - ACTIONS(5130), 1, + ACTIONS(5174), 1, anon_sym_DASH_GT, - STATE(663), 1, + STATE(1184), 1, sym_block, - STATE(2533), 1, + STATE(2475), 1, sym_where_clause, - STATE(3668), 1, + STATE(3716), 1, sym_label, - STATE(2253), 2, - sym_line_comment, - sym_block_comment, - [71367] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5135), 1, - anon_sym_fn, - ACTIONS(5137), 1, - anon_sym_extern, - STATE(2393), 1, - sym_extern_modifier, - STATE(2254), 3, - sym_line_comment, - sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5132), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71394] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(4544), 1, - anon_sym_PIPE, - ACTIONS(4546), 1, - anon_sym_LPAREN, - ACTIONS(4550), 1, - anon_sym_COLON, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2255), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - [71427] = 11, + [71977] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5066), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5142), 1, + ACTIONS(5176), 1, anon_sym_SEMI, - STATE(726), 1, + STATE(499), 1, sym_block, - STATE(2524), 1, + STATE(2497), 1, sym_where_clause, - STATE(3668), 1, + STATE(3713), 1, sym_label, - STATE(2256), 2, - sym_line_comment, - sym_block_comment, - [71462] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5076), 1, - anon_sym_LT, - STATE(677), 1, - sym_declaration_list, - STATE(2411), 1, - sym_type_parameters, - STATE(2747), 1, - sym_trait_bounds, - STATE(3311), 1, - sym_where_clause, - STATE(2257), 2, - sym_line_comment, - sym_block_comment, - [71497] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5144), 1, - anon_sym_fn, - ACTIONS(5146), 1, - anon_sym_extern, - STATE(2254), 1, - aux_sym_function_modifiers_repeat1, - STATE(2393), 1, - sym_extern_modifier, - STATE(2258), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4574), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71526] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1311), 1, - aux_sym_string_literal_token1, - STATE(2248), 1, - sym_string_literal, - STATE(2259), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(4779), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71551] = 11, + [72012] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5066), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5178), 1, anon_sym_SEMI, - ACTIONS(5150), 1, - anon_sym_DASH_GT, - STATE(520), 1, + STATE(537), 1, sym_block, - STATE(2501), 1, + STATE(2552), 1, sym_where_clause, - STATE(3668), 1, + STATE(3713), 1, sym_label, - STATE(2260), 2, - sym_line_comment, - sym_block_comment, - [71586] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2261), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 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, - [71607] = 11, + [72047] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4889), 1, + ACTIONS(4929), 1, sym_identifier, - STATE(1482), 1, - sym_attribute_item, - STATE(2268), 1, + STATE(1074), 1, aux_sym_enum_variant_list_repeat1, - STATE(3212), 1, + STATE(1433), 1, + sym_attribute_item, + STATE(3372), 1, sym_field_declaration, - STATE(3465), 1, + STATE(3634), 1, sym_visibility_modifier, - STATE(2262), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - [71642] = 6, + [72082] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_trait, - ACTIONS(5152), 1, - anon_sym_impl, - STATE(2263), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(5180), 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, - [71667] = 10, + [72103] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5088), 1, sym_identifier, - ACTIONS(5048), 1, + ACTIONS(5092), 1, anon_sym_DOT_DOT, - ACTIONS(5052), 1, + ACTIONS(5096), 1, anon_sym_ref, - ACTIONS(5054), 1, + ACTIONS(5098), 1, sym_mutable_specifier, - ACTIONS(5154), 1, + ACTIONS(5182), 1, anon_sym_RBRACE, - ACTIONS(5156), 1, + ACTIONS(5184), 1, anon_sym_COMMA, - STATE(2264), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - STATE(2804), 2, + STATE(2845), 2, sym_field_pattern, sym_remaining_field_pattern, - [71700] = 11, + [72136] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5158), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5186), 1, anon_sym_SEMI, - ACTIONS(5160), 1, - anon_sym_DASH_GT, - STATE(1188), 1, + STATE(1374), 1, sym_block, - STATE(2480), 1, + STATE(2472), 1, sym_where_clause, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2265), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - [71735] = 11, + [72171] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5162), 1, + ACTIONS(5188), 1, anon_sym_SEMI, - ACTIONS(5164), 1, - anon_sym_DASH_GT, - STATE(1359), 1, + STATE(590), 1, sym_block, STATE(2457), 1, sym_where_clause, - STATE(3671), 1, + STATE(3713), 1, sym_label, - STATE(2266), 2, + STATE(2289), 2, + sym_line_comment, + sym_block_comment, + [72206] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [71770] = 11, + ACTIONS(5031), 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, + [72227] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5076), 1, - anon_sym_LT, - STATE(675), 1, - sym_declaration_list, - STATE(2404), 1, - sym_type_parameters, - STATE(2568), 1, - sym_trait_bounds, - STATE(3216), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5190), 1, + anon_sym_SEMI, + STATE(1385), 1, + sym_block, + STATE(2503), 1, sym_where_clause, - STATE(2267), 2, + STATE(3716), 1, + sym_label, + STATE(2291), 2, sym_line_comment, sym_block_comment, - [71805] = 11, + [72262] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, + ACTIONS(3044), 1, anon_sym_POUND, - ACTIONS(4833), 1, + ACTIONS(4893), 1, sym_crate, - ACTIONS(4889), 1, + ACTIONS(4929), 1, sym_identifier, - STATE(1059), 1, + STATE(1074), 1, aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, + STATE(1433), 1, sym_attribute_item, - STATE(3187), 1, + STATE(2872), 1, sym_field_declaration, - STATE(3465), 1, + STATE(3634), 1, sym_visibility_modifier, - STATE(2268), 2, - sym_line_comment, - sym_block_comment, - [71840] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2269), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4979), 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, - [71861] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - ACTIONS(4849), 1, - anon_sym_BANG, - STATE(2270), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71886] = 11, + [72297] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5166), 1, + ACTIONS(5192), 1, anon_sym_SEMI, - STATE(1144), 1, + ACTIONS(5194), 1, + anon_sym_DASH_GT, + STATE(766), 1, sym_block, - STATE(2473), 1, + STATE(2536), 1, sym_where_clause, - STATE(3671), 1, + STATE(3713), 1, sym_label, - STATE(2271), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - [71921] = 10, + [72332] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(5048), 1, + ACTIONS(4893), 1, + sym_crate, + STATE(1433), 1, + sym_attribute_item, + STATE(2260), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3132), 1, + sym_enum_variant, + STATE(3487), 1, + sym_visibility_modifier, + STATE(2294), 2, + sym_line_comment, + sym_block_comment, + [72367] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4578), 1, + anon_sym_PIPE, + ACTIONS(4580), 1, + anon_sym_LPAREN, + ACTIONS(4584), 1, + anon_sym_COLON, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5168), 1, - anon_sym_RBRACE, - ACTIONS(5170), 1, - anon_sym_COMMA, - STATE(2272), 2, + ACTIONS(5196), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2295), 2, sym_line_comment, sym_block_comment, - STATE(2805), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71954] = 11, + [72400] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5076), 1, - anon_sym_LT, - STATE(1070), 1, - sym_declaration_list, - STATE(2352), 1, - sym_type_parameters, - STATE(2750), 1, - sym_trait_bounds, - STATE(3290), 1, + ACTIONS(5198), 1, + anon_sym_SEMI, + ACTIONS(5200), 1, + anon_sym_DASH_GT, + STATE(519), 1, + sym_block, + STATE(2515), 1, sym_where_clause, - STATE(2273), 2, + STATE(3713), 1, + sym_label, + STATE(2296), 2, sym_line_comment, sym_block_comment, - [71989] = 4, + [72435] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2274), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(4893), 1, + sym_crate, + ACTIONS(4929), 1, + sym_identifier, + STATE(1433), 1, + sym_attribute_item, + STATE(2285), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3265), 1, + sym_field_declaration, + STATE(3634), 1, + sym_visibility_modifier, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 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, - [72010] = 11, + [72470] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5172), 1, + ACTIONS(5202), 1, anon_sym_SEMI, - ACTIONS(5174), 1, + ACTIONS(5204), 1, anon_sym_DASH_GT, - STATE(1092), 1, + STATE(1216), 1, sym_block, - STATE(2467), 1, + STATE(2562), 1, sym_where_clause, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2275), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [72045] = 5, + [72505] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5176), 1, - anon_sym_trait, - STATE(2276), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5206), 1, + anon_sym_SEMI, + ACTIONS(5208), 1, + anon_sym_DASH_GT, + STATE(1143), 1, + sym_block, + STATE(2522), 1, + sym_where_clause, + STATE(3716), 1, + sym_label, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72067] = 9, + [72540] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5180), 1, - anon_sym_STAR, - STATE(3080), 1, - sym_use_list, - STATE(3665), 1, - sym_type_arguments, - ACTIONS(5178), 2, + ACTIONS(5088), 1, sym_identifier, - sym_super, - STATE(2277), 2, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5210), 1, + anon_sym_RBRACE, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [72097] = 10, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72570] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(5184), 1, - anon_sym_RPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - STATE(2289), 1, - aux_sym_macro_definition_repeat1, - STATE(3363), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2278), 2, + ACTIONS(5214), 1, + anon_sym_EQ, + ACTIONS(5212), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2301), 2, sym_line_comment, sym_block_comment, - [72129] = 10, + STATE(3086), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [72598] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(5184), 1, - anon_sym_RBRACK, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_LBRACE, - STATE(2292), 1, - aux_sym_macro_definition_repeat1, - STATE(3370), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2279), 2, + ACTIONS(5216), 1, + anon_sym_SEMI, + STATE(649), 1, + sym_field_declaration_list, + STATE(2860), 1, + sym_ordered_field_declaration_list, + STATE(3192), 1, + sym_where_clause, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [72161] = 10, + [72630] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, - anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5218), 1, anon_sym_RBRACE, - STATE(2293), 1, - aux_sym_macro_definition_repeat1, - STATE(3158), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2280), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - [72193] = 10, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72660] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5192), 1, + ACTIONS(5222), 1, anon_sym_RPAREN, - STATE(2294), 1, - aux_sym_macro_definition_repeat1, - STATE(3257), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2281), 2, - sym_line_comment, - sym_block_comment, - [72225] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5182), 1, - anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5192), 1, - anon_sym_RBRACK, - STATE(2295), 1, + STATE(2202), 1, aux_sym_macro_definition_repeat1, - STATE(3314), 1, + STATE(3224), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2282), 2, + STATE(2304), 2, sym_line_comment, sym_block_comment, - [72257] = 10, + [72692] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5222), 1, + anon_sym_RBRACK, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, - anon_sym_RBRACE, - STATE(2296), 1, + STATE(2202), 1, aux_sym_macro_definition_repeat1, - STATE(3351), 1, + STATE(3225), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2283), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [72289] = 5, + [72724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5196), 1, + ACTIONS(5228), 1, sym_identifier, - STATE(2284), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 6, + ACTIONS(4819), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72311] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, - anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(2285), 2, - sym_line_comment, - sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72341] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, - anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(2286), 2, - sym_line_comment, - sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72371] = 8, + [72746] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - ACTIONS(5204), 1, + ACTIONS(5232), 1, anon_sym_COLON, - ACTIONS(5206), 1, + ACTIONS(5234), 1, anon_sym_COLON_COLON, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5202), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2287), 2, - sym_line_comment, - sym_block_comment, - [72399] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5208), 1, - aux_sym_line_comment_token1, - ACTIONS(5210), 1, - aux_sym_line_comment_token3, - ACTIONS(5212), 1, - anon_sym_BANG2, - ACTIONS(5214), 1, - anon_sym_SLASH2, - STATE(3439), 1, - sym__inner_line_doc_comment_marker, - STATE(3461), 1, - sym__outer_line_doc_comment_marker, - STATE(3617), 1, - sym__line_doc_comment_marker, - STATE(2288), 2, - sym_line_comment, - sym_block_comment, - [72431] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5182), 1, - anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5216), 1, + ACTIONS(5230), 2, anon_sym_RPAREN, - STATE(2214), 1, - aux_sym_macro_definition_repeat1, - STATE(3273), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2289), 2, - sym_line_comment, - sym_block_comment, - [72463] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4851), 1, - anon_sym_DOT_DOT, - ACTIONS(4855), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2290), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4562), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72489] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4937), 1, - anon_sym_LPAREN, - ACTIONS(4953), 1, - anon_sym_LBRACE, - ACTIONS(5220), 1, - anon_sym_EQ, - ACTIONS(5218), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(2291), 2, - sym_line_comment, - sym_block_comment, - STATE(2928), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72517] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5182), 1, - anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5216), 1, - anon_sym_RBRACK, - STATE(2214), 1, - aux_sym_macro_definition_repeat1, - STATE(3318), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2292), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - [72549] = 10, + [72774] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5222), 1, + ACTIONS(5236), 1, anon_sym_RBRACE, - STATE(2214), 1, + STATE(2202), 1, aux_sym_macro_definition_repeat1, - STATE(3346), 1, + STATE(3226), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2293), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [72581] = 10, + [72806] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + ACTIONS(5238), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5240), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5242), 1, + anon_sym_RBRACK, + ACTIONS(5244), 1, anon_sym_LBRACE, - ACTIONS(5224), 1, - anon_sym_RPAREN, - STATE(2214), 1, - aux_sym_macro_definition_repeat1, - STATE(3282), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2294), 2, + ACTIONS(5246), 1, + anon_sym_EQ, + STATE(3441), 1, + sym_delim_token_tree, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [72613] = 10, + [72838] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, - anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5224), 1, - anon_sym_RBRACK, - STATE(2214), 1, - aux_sym_macro_definition_repeat1, - STATE(3284), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2295), 2, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5234), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [72645] = 10, + ACTIONS(3425), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [72864] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_LBRACE, ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5248), 1, anon_sym_RBRACE, - STATE(2214), 1, + STATE(2332), 1, aux_sym_macro_definition_repeat1, - STATE(3132), 1, + STATE(3361), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2296), 2, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [72677] = 10, + [72896] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, + ACTIONS(5250), 1, anon_sym_RBRACE, - STATE(2302), 1, + STATE(2333), 1, aux_sym_macro_definition_repeat1, - STATE(3159), 1, + STATE(3380), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2297), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [72709] = 10, + [72928] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, - anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5230), 1, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5252), 1, anon_sym_RBRACE, - STATE(2303), 1, - aux_sym_macro_definition_repeat1, - STATE(3182), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2298), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [72741] = 10, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72958] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4953), 1, - anon_sym_LBRACE, - ACTIONS(5232), 1, - anon_sym_SEMI, - STATE(1368), 1, - sym_field_declaration_list, - STATE(2827), 1, - sym_ordered_field_declaration_list, - STATE(3258), 1, - sym_where_clause, - STATE(2299), 2, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5254), 1, + anon_sym_RBRACE, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72773] = 8, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72988] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5092), 1, anon_sym_DOT_DOT, - ACTIONS(5236), 1, - anon_sym_COLON, - ACTIONS(5238), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5234), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2300), 2, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5256), 1, + anon_sym_RBRACE, + STATE(2315), 2, sym_line_comment, sym_block_comment, - [72801] = 7, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73018] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5092), 1, anon_sym_DOT_DOT, - ACTIONS(5238), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2301), 2, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5258), 1, + anon_sym_RBRACE, + STATE(2316), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72827] = 10, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73048] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5240), 1, - anon_sym_RBRACE, - STATE(2214), 1, + ACTIONS(5260), 1, + anon_sym_RPAREN, + STATE(2326), 1, aux_sym_macro_definition_repeat1, - STATE(3099), 1, + STATE(3330), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2302), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [72859] = 10, + [73080] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5242), 1, - anon_sym_RBRACE, - STATE(2214), 1, + ACTIONS(5260), 1, + anon_sym_RBRACK, + STATE(2327), 1, aux_sym_macro_definition_repeat1, - STATE(3100), 1, + STATE(3332), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2303), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - [72891] = 10, + [73112] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(4939), 1, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5244), 1, - anon_sym_SEMI, - STATE(669), 1, - sym_field_declaration_list, - STATE(2986), 1, - sym_ordered_field_declaration_list, - STATE(3191), 1, - sym_where_clause, - STATE(2304), 2, + ACTIONS(5262), 1, + anon_sym_RPAREN, + STATE(2357), 1, + aux_sym_macro_definition_repeat1, + STATE(3334), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [72923] = 10, + [73144] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_COLON_COLON, - ACTIONS(5246), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, - anon_sym_RBRACK, - ACTIONS(5252), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, - anon_sym_EQ, - STATE(3580), 1, - sym_delim_token_tree, - STATE(2305), 2, + ACTIONS(5262), 1, + anon_sym_RBRACK, + STATE(2329), 1, + aux_sym_macro_definition_repeat1, + STATE(3335), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [72955] = 10, + [73176] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4779), 1, anon_sym_COLON_COLON, - ACTIONS(5246), 1, + ACTIONS(5238), 1, anon_sym_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5240), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, - anon_sym_RBRACK, - ACTIONS(5252), 1, + ACTIONS(5244), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5264), 1, + anon_sym_RBRACK, + ACTIONS(5266), 1, anon_sym_EQ, - STATE(3580), 1, + STATE(3611), 1, sym_delim_token_tree, - STATE(2306), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [72987] = 10, + [73208] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, + ACTIONS(4791), 1, anon_sym_COLON_COLON, - ACTIONS(5246), 1, + ACTIONS(5238), 1, anon_sym_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5240), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5242), 1, anon_sym_RBRACK, - ACTIONS(5252), 1, + ACTIONS(5244), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5246), 1, anon_sym_EQ, - STATE(3580), 1, + STATE(3441), 1, sym_delim_token_tree, - STATE(2307), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - [73019] = 10, + [73240] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4953), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5268), 1, anon_sym_SEMI, - STATE(1130), 1, + STATE(1152), 1, sym_field_declaration_list, - STATE(2876), 1, + STATE(2868), 1, sym_ordered_field_declaration_list, - STATE(3199), 1, + STATE(3257), 1, sym_where_clause, - STATE(2308), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [73051] = 9, + [73272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5270), 1, sym_identifier, - ACTIONS(5048), 1, - anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5258), 1, - anon_sym_RBRACE, - STATE(2309), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73081] = 9, + ACTIONS(4819), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73294] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5260), 1, - anon_sym_RBRACE, - STATE(2310), 2, + ACTIONS(5274), 1, + anon_sym_COLON, + ACTIONS(5276), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5272), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2325), 2, sym_line_comment, sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73111] = 9, + [73322] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, - anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5262), 1, - anon_sym_RBRACE, - STATE(2311), 2, + ACTIONS(5220), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5278), 1, + anon_sym_RPAREN, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3346), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2326), 2, sym_line_comment, sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73141] = 9, + [73354] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, - anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5264), 1, + ACTIONS(5220), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5278), 1, + anon_sym_RBRACK, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3347), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + [73386] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5220), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5280), 1, anon_sym_RBRACE, - STATE(2312), 2, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3200), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2328), 2, sym_line_comment, sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73171] = 5, + [73418] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - sym_identifier, - STATE(2313), 2, + ACTIONS(5220), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5282), 1, + anon_sym_RBRACK, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3349), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2329), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73193] = 9, + [73450] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5268), 1, - anon_sym_RBRACE, - STATE(2314), 2, + ACTIONS(5232), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5230), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2330), 2, sym_line_comment, sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73223] = 9, + [73478] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - ACTIONS(5270), 1, - anon_sym_RBRACE, - STATE(2315), 2, + ACTIONS(5284), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2331), 2, sym_line_comment, sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73253] = 8, + ACTIONS(3425), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73504] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(4953), 1, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_EQ, - ACTIONS(5272), 2, + ACTIONS(5286), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2316), 2, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3397), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2332), 2, sym_line_comment, sym_block_comment, - STATE(2957), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73281] = 5, + [73536] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5276), 1, - sym_identifier, - STATE(2317), 2, + ACTIONS(5220), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5288), 1, + anon_sym_RBRACE, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3402), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73303] = 10, + [73568] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(4703), 1, + anon_sym_COLON_COLON, + ACTIONS(5238), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5240), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5242), 1, + anon_sym_RBRACK, + ACTIONS(5244), 1, anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym_macro_definition_repeat1, - STATE(3285), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2318), 2, + ACTIONS(5246), 1, + anon_sym_EQ, + STATE(3441), 1, + sym_delim_token_tree, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [73335] = 10, + [73600] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_RBRACK, - STATE(2323), 1, + ACTIONS(5290), 1, + anon_sym_RPAREN, + STATE(2353), 1, aux_sym_macro_definition_repeat1, - STATE(3286), 1, + STATE(3304), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2319), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - [73367] = 10, + [73632] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, - anon_sym_RPAREN, - STATE(2324), 1, + ACTIONS(5290), 1, + anon_sym_RBRACK, + STATE(2355), 1, aux_sym_macro_definition_repeat1, - STATE(3287), 1, + STATE(3312), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2320), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [73399] = 10, + [73664] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, - anon_sym_RBRACK, - STATE(2325), 1, + ACTIONS(5292), 1, + anon_sym_RBRACE, + STATE(2328), 1, aux_sym_macro_definition_repeat1, - STATE(3289), 1, + STATE(3323), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2321), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [73431] = 10, + [73696] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5282), 1, + ACTIONS(5294), 1, anon_sym_RPAREN, - STATE(2214), 1, + STATE(2304), 1, aux_sym_macro_definition_repeat1, - STATE(3304), 1, + STATE(3325), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2322), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - [73463] = 10, + [73728] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5282), 1, + ACTIONS(5294), 1, anon_sym_RBRACK, - STATE(2214), 1, + STATE(2305), 1, aux_sym_macro_definition_repeat1, - STATE(3305), 1, + STATE(3333), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2323), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [73495] = 10, + [73760] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5284), 1, - anon_sym_RPAREN, - STATE(2214), 1, + ACTIONS(5296), 1, + anon_sym_RBRACE, + STATE(2308), 1, aux_sym_macro_definition_repeat1, - STATE(3306), 1, + STATE(3341), 1, sym_macro_rule, - STATE(3656), 1, + STATE(3461), 1, sym_token_tree_pattern, - STATE(2324), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [73527] = 10, + [73792] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - ACTIONS(5284), 1, - anon_sym_RBRACK, - STATE(2214), 1, - aux_sym_macro_definition_repeat1, - STATE(3307), 1, - sym_macro_rule, - STATE(3656), 1, - sym_token_tree_pattern, - STATE(2325), 2, + ACTIONS(5300), 1, + anon_sym_EQ, + ACTIONS(5298), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [73559] = 8, + STATE(2828), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73820] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5236), 1, - anon_sym_COLON, - ACTIONS(5286), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5234), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2326), 2, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5304), 1, + anon_sym_STAR, + STATE(2853), 1, + sym_use_list, + STATE(3558), 1, + sym_type_arguments, + ACTIONS(5302), 2, + sym_identifier, + sym_super, + STATE(2342), 2, sym_line_comment, sym_block_comment, - [73587] = 7, + [73850] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, + ACTIONS(4588), 1, anon_sym_DOT_DOT, - ACTIONS(5286), 1, + ACTIONS(5306), 1, anon_sym_COLON_COLON, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2327), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 3, - anon_sym_RPAREN, + ACTIONS(3425), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [73613] = 10, + [73876] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, + ACTIONS(4978), 1, anon_sym_LPAREN, - ACTIONS(4939), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5288), 1, + ACTIONS(5308), 1, anon_sym_SEMI, - STATE(535), 1, + STATE(1222), 1, sym_field_declaration_list, - STATE(3048), 1, + STATE(2915), 1, sym_ordered_field_declaration_list, - STATE(3298), 1, + STATE(3251), 1, sym_where_clause, - STATE(2328), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [73645] = 7, + [73908] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2329), 2, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5304), 1, + anon_sym_STAR, + STATE(2853), 1, + sym_use_list, + STATE(3477), 1, + sym_type_arguments, + ACTIONS(5302), 2, + sym_identifier, + sym_super, + STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [73671] = 5, + [73938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5292), 1, + ACTIONS(5310), 1, anon_sym_trait, - STATE(2330), 2, + STATE(2346), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73960] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5312), 1, + aux_sym_line_comment_token1, + ACTIONS(5314), 1, + aux_sym_line_comment_token3, + ACTIONS(5316), 1, + anon_sym_BANG2, + ACTIONS(5318), 1, + anon_sym_SLASH2, + STATE(3533), 1, + sym__line_doc_comment_marker, + STATE(3575), 1, + sym__inner_line_doc_comment_marker, + STATE(3591), 1, + sym__outer_line_doc_comment_marker, + STATE(2347), 2, + sym_line_comment, + sym_block_comment, + [73992] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5320), 1, + sym_identifier, + STATE(2348), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(4819), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73693] = 9, + [74014] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4210), 1, + ACTIONS(4978), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_LBRACE, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5180), 1, - anon_sym_STAR, - STATE(3080), 1, - sym_use_list, - STATE(3563), 1, - sym_type_arguments, - ACTIONS(5178), 2, + ACTIONS(5322), 1, + anon_sym_SEMI, + STATE(749), 1, + sym_field_declaration_list, + STATE(2948), 1, + sym_ordered_field_declaration_list, + STATE(3384), 1, + sym_where_clause, + STATE(2349), 2, + sym_line_comment, + sym_block_comment, + [74046] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5088), 1, sym_identifier, - sym_super, - STATE(2331), 2, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5324), 1, + anon_sym_RBRACE, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [73723] = 5, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74076] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5326), 1, + anon_sym_trait, + STATE(2351), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74098] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5088), 1, sym_identifier, - STATE(2332), 2, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + ACTIONS(5328), 1, + anon_sym_RBRACE, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74128] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5220), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5330), 1, + anon_sym_RPAREN, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3196), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2353), 2, + sym_line_comment, + sym_block_comment, + [74160] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5332), 1, + sym_identifier, + STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 6, + ACTIONS(4819), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73745] = 10, + [74182] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - ACTIONS(5246), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5226), 1, anon_sym_LBRACE, - ACTIONS(5296), 1, + ACTIONS(5330), 1, anon_sym_RBRACK, - ACTIONS(5298), 1, - anon_sym_EQ, - STATE(3459), 1, - sym_delim_token_tree, - STATE(2333), 2, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3199), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [73777] = 6, + [74214] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, + ACTIONS(4863), 1, + anon_sym_DOT_DOT, + ACTIONS(4867), 1, anon_sym_COLON_COLON, - ACTIONS(5012), 1, - anon_sym_for, - STATE(2334), 2, + ACTIONS(4865), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, + ACTIONS(4596), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [74240] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5220), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_LBRACK, + ACTIONS(5226), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5282), 1, + anon_sym_RPAREN, + STATE(2202), 1, + aux_sym_macro_definition_repeat1, + STATE(3348), 1, + sym_macro_rule, + STATE(3461), 1, + sym_token_tree_pattern, + STATE(2357), 2, + sym_line_comment, + sym_block_comment, + [74272] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, anon_sym_where, - [73800] = 9, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5334), 1, + anon_sym_SEMI, + ACTIONS(5336), 1, + anon_sym_EQ, + STATE(3033), 1, + sym_trait_bounds, + STATE(3255), 1, + sym_where_clause, + STATE(2358), 2, + sym_line_comment, + sym_block_comment, + [74301] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5300), 1, + ACTIONS(5338), 1, anon_sym_SEMI, - STATE(1073), 1, + STATE(703), 1, sym_declaration_list, - STATE(2830), 1, + STATE(2944), 1, sym_where_clause, - STATE(2335), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - [73829] = 9, + [74330] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5092), 1, + anon_sym_DOT_DOT, + ACTIONS(5096), 1, + anon_sym_ref, + ACTIONS(5098), 1, + sym_mutable_specifier, + STATE(2360), 2, + sym_line_comment, + sym_block_comment, + STATE(3138), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74357] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5342), 1, + anon_sym_COMMA, + STATE(2431), 1, + aux_sym_where_clause_repeat1, + STATE(2361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5340), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [74380] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4733), 1, + anon_sym_DOT_DOT, + ACTIONS(4735), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4578), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [74403] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5302), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - STATE(1378), 1, - sym_enum_variant_list, - STATE(2766), 1, - sym_type_parameters, - STATE(3320), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5344), 1, + anon_sym_SEMI, + STATE(738), 1, + sym_declaration_list, + STATE(3110), 1, sym_where_clause, - STATE(2336), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [73858] = 9, + [74432] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4953), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1078), 1, - sym_field_declaration_list, - STATE(2777), 1, - sym_type_parameters, - STATE(3337), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5346), 1, + anon_sym_SEMI, + STATE(1237), 1, + sym_declaration_list, + STATE(2929), 1, sym_where_clause, - STATE(2337), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - [73887] = 9, + [74461] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5304), 1, + ACTIONS(5348), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(1239), 1, sym_declaration_list, - STATE(3011), 1, + STATE(2930), 1, sym_where_clause, - STATE(2338), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [73916] = 6, + [74490] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(5008), 1, - anon_sym_for, - STATE(2339), 2, + ACTIONS(3140), 1, + anon_sym_PLUS, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5350), 1, + anon_sym_GT, + ACTIONS(5352), 1, + anon_sym_COMMA, + STATE(3038), 1, + sym_trait_bounds, + STATE(3039), 1, + aux_sym_type_arguments_repeat1, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, + [74519] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, anon_sym_LBRACE, + ACTIONS(5082), 1, anon_sym_PLUS, - anon_sym_where, - [73939] = 9, + ACTIONS(5354), 1, + anon_sym_SEMI, + STATE(570), 1, + sym_declaration_list, + STATE(3045), 1, + sym_where_clause, + STATE(2367), 2, + sym_line_comment, + sym_block_comment, + [74548] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5306), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - STATE(557), 1, - sym_enum_variant_list, - STATE(2729), 1, - sym_type_parameters, - STATE(3382), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5356), 1, + anon_sym_SEMI, + STATE(572), 1, + sym_declaration_list, + STATE(3048), 1, sym_where_clause, - STATE(2340), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [73968] = 5, + [74577] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_DOT_DOT, - STATE(2341), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5358), 1, + anon_sym_SEMI, + STATE(528), 1, + sym_declaration_list, + STATE(2898), 1, + sym_where_clause, + STATE(2369), 2, sym_line_comment, sym_block_comment, - ACTIONS(4711), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73989] = 9, + [74606] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5308), 1, + ACTIONS(5360), 1, anon_sym_PLUS, - ACTIONS(5310), 1, + ACTIONS(5362), 1, anon_sym_GT, - ACTIONS(5312), 1, + ACTIONS(5364), 1, anon_sym_COMMA, - STATE(2845), 1, + STATE(2992), 1, sym_trait_bounds, - STATE(2846), 1, + STATE(2993), 1, aux_sym_type_arguments_repeat1, - STATE(2342), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [74018] = 9, + [74635] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, + ACTIONS(3140), 1, anon_sym_PLUS, - ACTIONS(5074), 1, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5310), 1, + ACTIONS(5362), 1, anon_sym_GT, - ACTIONS(5312), 1, + ACTIONS(5364), 1, anon_sym_COMMA, - STATE(2845), 1, + STATE(2992), 1, sym_trait_bounds, - STATE(2846), 1, + STATE(2993), 1, aux_sym_type_arguments_repeat1, - STATE(2343), 2, - sym_line_comment, - sym_block_comment, - [74047] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, - anon_sym_where, - STATE(564), 1, - sym_field_declaration_list, - STATE(2753), 1, - sym_type_parameters, - STATE(3171), 1, - sym_where_clause, - STATE(2344), 2, - sym_line_comment, - sym_block_comment, - [74076] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3592), 1, - anon_sym_COLON, - ACTIONS(5314), 1, - anon_sym_EQ, - STATE(2345), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - ACTIONS(3590), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74099] = 9, + [74664] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5316), 1, + ACTIONS(5366), 1, anon_sym_SEMI, - STATE(708), 1, + STATE(530), 1, sym_declaration_list, - STATE(2866), 1, + STATE(2902), 1, sym_where_clause, - STATE(2346), 2, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [74128] = 6, + [74693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_DOT_DOT, - ACTIONS(4707), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2347), 2, + ACTIONS(4871), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2373), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74151] = 8, + ACTIONS(3652), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [74714] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5318), 1, + ACTIONS(5368), 1, anon_sym_if, - STATE(3622), 1, + STATE(3717), 1, sym_label, - STATE(1407), 2, + STATE(473), 2, sym_if_expression, sym_block, - STATE(2348), 2, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [74178] = 9, + [74741] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5320), 1, - anon_sym_SEMI, - STATE(1096), 1, - sym_declaration_list, - STATE(2862), 1, - sym_where_clause, - STATE(2349), 2, + ACTIONS(5370), 1, + anon_sym_RBRACK, + ACTIONS(4945), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [74207] = 9, + ACTIONS(3626), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [74764] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5322), 1, + ACTIONS(5373), 1, anon_sym_SEMI, - STATE(1100), 1, + STATE(780), 1, sym_declaration_list, - STATE(2865), 1, + STATE(2832), 1, sym_where_clause, - STATE(2350), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [74236] = 9, + [74793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5324), 1, - anon_sym_SEMI, - STATE(1117), 1, - sym_declaration_list, - STATE(2871), 1, - sym_where_clause, - STATE(2351), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - [74265] = 9, + ACTIONS(4991), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [74812] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5375), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(1122), 1, - sym_declaration_list, - STATE(2556), 1, - sym_trait_bounds, - STATE(3186), 1, + STATE(674), 1, + sym_enum_variant_list, + STATE(2650), 1, + sym_type_parameters, + STATE(3153), 1, sym_where_clause, - STATE(2352), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [74294] = 9, + [74841] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5326), 1, + ACTIONS(5377), 1, anon_sym_SEMI, - STATE(699), 1, + STATE(532), 1, sym_declaration_list, - STATE(2859), 1, + STATE(2905), 1, sym_where_clause, - STATE(2353), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [74323] = 9, + [74870] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, + ACTIONS(4982), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5306), 1, + ACTIONS(5375), 1, anon_sym_LBRACE, - STATE(570), 1, + STATE(630), 1, sym_enum_variant_list, - STATE(2578), 1, + STATE(2663), 1, sym_type_parameters, - STATE(3268), 1, + STATE(3239), 1, sym_where_clause, - STATE(2354), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - [74352] = 7, + [74899] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5238), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5202), 2, - anon_sym_RPAREN, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5360), 1, + anon_sym_PLUS, + ACTIONS(5379), 1, + anon_sym_GT, + ACTIONS(5381), 1, anon_sym_COMMA, - STATE(2355), 2, + STATE(3016), 1, + sym_trait_bounds, + STATE(3017), 1, + aux_sym_type_arguments_repeat1, + STATE(2381), 2, sym_line_comment, sym_block_comment, - [74377] = 9, + [74928] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(3140), 1, anon_sym_PLUS, - ACTIONS(5328), 1, - anon_sym_SEMI, - STATE(706), 1, - sym_declaration_list, - STATE(2938), 1, - sym_where_clause, - STATE(2356), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5379), 1, + anon_sym_GT, + ACTIONS(5381), 1, + anon_sym_COMMA, + STATE(3016), 1, + sym_trait_bounds, + STATE(3017), 1, + aux_sym_type_arguments_repeat1, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [74406] = 9, + [74957] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5001), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5330), 1, - anon_sym_SEMI, - STATE(709), 1, - sym_declaration_list, - STATE(2945), 1, + STATE(772), 1, + sym_field_declaration_list, + STATE(2674), 1, + sym_type_parameters, + STATE(3378), 1, sym_where_clause, - STATE(2357), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [74435] = 7, + [74986] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5238), 1, + ACTIONS(4660), 1, anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5332), 2, - anon_sym_RPAREN, + ACTIONS(5383), 1, + anon_sym_GT, + ACTIONS(5385), 1, anon_sym_COMMA, - STATE(2358), 2, + STATE(3093), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3425), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2384), 2, sym_line_comment, sym_block_comment, - [74460] = 9, + [75013] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5334), 1, - anon_sym_SEMI, - STATE(1146), 1, - sym_declaration_list, - STATE(2893), 1, - sym_where_clause, - STATE(2359), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5387), 1, + anon_sym_if, + STATE(3718), 1, + sym_label, + STATE(1784), 2, + sym_if_expression, + sym_block, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [74489] = 9, + [75040] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5389), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5336), 1, - anon_sym_SEMI, - STATE(1148), 1, - sym_declaration_list, - STATE(2894), 1, + STATE(1116), 1, + sym_enum_variant_list, + STATE(2624), 1, + sym_type_parameters, + STATE(3366), 1, sym_where_clause, - STATE(2360), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - [74518] = 9, + [75069] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5338), 1, + ACTIONS(5391), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1119), 1, sym_declaration_list, - STATE(2897), 1, + STATE(3104), 1, sym_where_clause, - STATE(2361), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - [74547] = 9, + [75098] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5340), 1, - anon_sym_SEMI, - STATE(1154), 1, - sym_declaration_list, - STATE(2898), 1, - sym_where_clause, - STATE(2362), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5393), 1, + anon_sym_if, + STATE(3574), 1, + sym_label, + STATE(413), 2, + sym_if_expression, + sym_block, + STATE(2388), 2, sym_line_comment, sym_block_comment, - [74576] = 4, + [75125] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2363), 2, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_field_declaration_list, + STATE(2581), 1, + sym_type_parameters, + STATE(3381), 1, + sym_where_clause, + STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(5028), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [74595] = 9, + [75154] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(1186), 1, - sym_declaration_list, - STATE(2575), 1, - sym_trait_bounds, - STATE(3326), 1, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, + anon_sym_where, + STATE(1127), 1, + sym_field_declaration_list, + STATE(2629), 1, + sym_type_parameters, + STATE(3421), 1, sym_where_clause, - STATE(2364), 2, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [74624] = 5, + [75183] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2365), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(5015), 1, + anon_sym_for, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 4, - anon_sym_RPAREN, + ACTIONS(3425), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [74645] = 9, + anon_sym_where, + [75206] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5342), 1, + ACTIONS(5395), 1, anon_sym_SEMI, - STATE(713), 1, + STATE(1243), 1, sym_declaration_list, - STATE(2955), 1, + STATE(2934), 1, sym_where_clause, - STATE(2366), 2, + STATE(2392), 2, sym_line_comment, sym_block_comment, - [74674] = 9, + [75235] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5344), 1, + ACTIONS(5397), 1, anon_sym_SEMI, - STATE(718), 1, + STATE(1245), 1, sym_declaration_list, - STATE(2958), 1, + STATE(2935), 1, sym_where_clause, - STATE(2367), 2, + STATE(2393), 2, sym_line_comment, sym_block_comment, - [74703] = 9, + [75264] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5346), 1, - anon_sym_SEMI, - STATE(1204), 1, - sym_declaration_list, - STATE(2917), 1, - sym_where_clause, - STATE(2368), 2, + ACTIONS(3600), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_EQ, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [74732] = 9, + ACTIONS(3598), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [75287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5348), 1, - anon_sym_SEMI, - STATE(1206), 1, - sym_declaration_list, - STATE(2789), 1, - sym_where_clause, - STATE(2369), 2, + ACTIONS(4707), 1, + anon_sym_DOT_DOT, + STATE(2395), 2, sym_line_comment, sym_block_comment, - [74761] = 9, + ACTIONS(4705), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75308] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(5046), 1, + anon_sym_for, + STATE(2396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3425), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5060), 1, anon_sym_PLUS, - ACTIONS(5350), 1, + anon_sym_where, + [75331] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5401), 1, + anon_sym_RBRACK, + ACTIONS(4871), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3652), 3, anon_sym_SEMI, - STATE(1218), 1, - sym_declaration_list, - STATE(2918), 1, - sym_where_clause, - STATE(2370), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + [75354] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2398), 2, sym_line_comment, sym_block_comment, - [74790] = 9, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75373] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5352), 1, + ACTIONS(5404), 1, anon_sym_SEMI, - STATE(1220), 1, + STATE(507), 1, sym_declaration_list, - STATE(2919), 1, + STATE(3120), 1, sym_where_clause, - STATE(2371), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [74819] = 9, + [75402] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5354), 1, + ACTIONS(5406), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(634), 1, sym_declaration_list, - STATE(2921), 1, + STATE(3103), 1, sym_where_clause, - STATE(2372), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - [74848] = 9, + [75431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(5019), 1, + anon_sym_for, + STATE(2401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3425), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5060), 1, anon_sym_PLUS, - ACTIONS(5356), 1, - anon_sym_SEMI, - STATE(1224), 1, - sym_declaration_list, - STATE(2922), 1, - sym_where_clause, - STATE(2373), 2, + anon_sym_where, + [75454] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5234), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5408), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2402), 2, sym_line_comment, sym_block_comment, - [74877] = 9, + [75479] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5358), 1, + ACTIONS(5410), 1, anon_sym_SEMI, - STATE(1258), 1, + STATE(509), 1, sym_declaration_list, - STATE(2925), 1, + STATE(2825), 1, sym_where_clause, - STATE(2374), 2, + STATE(2403), 2, sym_line_comment, sym_block_comment, - [74906] = 9, + [75508] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5360), 1, + ACTIONS(5412), 1, anon_sym_SEMI, - STATE(1260), 1, + STATE(1145), 1, sym_declaration_list, - STATE(2926), 1, + STATE(2863), 1, sym_where_clause, - STATE(2375), 2, - sym_line_comment, - sym_block_comment, - [74935] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_DOT_DOT, - STATE(2376), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(4671), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74956] = 9, + [75537] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5308), 1, - anon_sym_PLUS, - ACTIONS(5362), 1, - anon_sym_GT, - ACTIONS(5364), 1, - anon_sym_COMMA, - STATE(2959), 1, - sym_trait_bounds, - STATE(2960), 1, - aux_sym_type_arguments_repeat1, - STATE(2377), 2, + STATE(1277), 1, + sym_declaration_list, + STATE(2673), 1, + sym_trait_bounds, + STATE(3363), 1, + sym_where_clause, + STATE(2405), 2, sym_line_comment, sym_block_comment, - [74985] = 9, + [75566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, - anon_sym_PLUS, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5362), 1, - anon_sym_GT, - ACTIONS(5364), 1, - anon_sym_COMMA, - STATE(2959), 1, - sym_trait_bounds, - STATE(2960), 1, - aux_sym_type_arguments_repeat1, - STATE(2378), 2, + ACTIONS(997), 1, + anon_sym_DOT_DOT, + STATE(2406), 2, sym_line_comment, sym_block_comment, - [75014] = 9, + ACTIONS(999), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75587] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5366), 1, - anon_sym_SEMI, - STATE(521), 1, - sym_declaration_list, - STATE(3082), 1, - sym_where_clause, - STATE(2379), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(5076), 1, + anon_sym_for, + STATE(2407), 2, sym_line_comment, sym_block_comment, - [75043] = 9, + ACTIONS(3425), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75610] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5368), 1, + ACTIONS(5414), 1, anon_sym_SEMI, - STATE(528), 1, + STATE(705), 1, sym_declaration_list, - STATE(3086), 1, + STATE(2962), 1, sym_where_clause, - STATE(2380), 2, + STATE(2408), 2, sym_line_comment, sym_block_comment, - [75072] = 8, + [75639] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5370), 1, - anon_sym_if, - STATE(3672), 1, - sym_label, - STATE(485), 2, - sym_if_expression, - sym_block, - STATE(2381), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(1155), 1, + sym_declaration_list, + STATE(2642), 1, + sym_trait_bounds, + STATE(3422), 1, + sym_where_clause, + STATE(2409), 2, sym_line_comment, sym_block_comment, - [75099] = 9, + [75668] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5372), 1, + ACTIONS(5416), 1, anon_sym_SEMI, - ACTIONS(5374), 1, + ACTIONS(5418), 1, anon_sym_EQ, - STATE(2828), 1, + STATE(2869), 1, sym_trait_bounds, - STATE(3454), 1, + STATE(3305), 1, sym_where_clause, - STATE(2382), 2, + STATE(2410), 2, sym_line_comment, sym_block_comment, - [75128] = 8, + [75697] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5234), 1, anon_sym_COLON_COLON, - ACTIONS(5376), 1, - anon_sym_GT, - ACTIONS(5378), 1, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5272), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2985), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3365), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2383), 2, + STATE(2411), 2, sym_line_comment, sym_block_comment, - [75155] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [75722] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5380), 1, - anon_sym_if, - STATE(3541), 1, - sym_label, - STATE(408), 2, - sym_if_expression, - sym_block, - STATE(2384), 2, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_ref, + ACTIONS(5424), 1, + sym_mutable_specifier, + ACTIONS(5426), 1, + anon_sym_move, + STATE(218), 1, + sym_closure_parameters, + STATE(2412), 2, sym_line_comment, sym_block_comment, - [75182] = 9, + [75751] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5308), 1, - anon_sym_PLUS, - ACTIONS(5382), 1, - anon_sym_GT, - ACTIONS(5384), 1, - anon_sym_COMMA, - STATE(2989), 1, + STATE(754), 1, + sym_declaration_list, + STATE(2596), 1, sym_trait_bounds, - STATE(2990), 1, - aux_sym_type_arguments_repeat1, - STATE(2385), 2, + STATE(3167), 1, + sym_where_clause, + STATE(2413), 2, sym_line_comment, sym_block_comment, - [75211] = 9, + [75780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, - anon_sym_PLUS, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5382), 1, - anon_sym_GT, - ACTIONS(5384), 1, - anon_sym_COMMA, - STATE(2989), 1, - sym_trait_bounds, - STATE(2990), 1, - aux_sym_type_arguments_repeat1, - STATE(2386), 2, + ACTIONS(1003), 1, + anon_sym_DOT_DOT, + STATE(2414), 2, sym_line_comment, sym_block_comment, - [75240] = 8, + ACTIONS(1005), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5386), 1, - anon_sym_if, - STATE(3673), 1, - sym_label, - STATE(1742), 2, - sym_if_expression, - sym_block, - STATE(2387), 2, + ACTIONS(1009), 1, + anon_sym_DOT_DOT, + STATE(2415), 2, sym_line_comment, sym_block_comment, - [75267] = 9, + ACTIONS(1011), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75822] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5388), 1, + ACTIONS(5428), 1, anon_sym_SEMI, - STATE(618), 1, + STATE(613), 1, sym_declaration_list, - STATE(2820), 1, + STATE(3075), 1, sym_where_clause, - STATE(2388), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - [75296] = 9, + [75851] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5389), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + STATE(1166), 1, + sym_enum_variant_list, + STATE(2646), 1, + sym_type_parameters, + STATE(3324), 1, + sym_where_clause, + STATE(2417), 2, + sym_line_comment, + sym_block_comment, + [75880] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5390), 1, + ACTIONS(5430), 1, anon_sym_SEMI, - STATE(523), 1, + STATE(1295), 1, sym_declaration_list, - STATE(3010), 1, + STATE(2951), 1, sym_where_clause, - STATE(2389), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - [75325] = 6, + [75909] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(5018), 1, - anon_sym_for, - STATE(2390), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5432), 1, + anon_sym_SEMI, + STATE(1297), 1, + sym_declaration_list, + STATE(2952), 1, + sym_where_clause, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, + [75938] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4980), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, anon_sym_where, - [75348] = 6, + STATE(1171), 1, + sym_field_declaration_list, + STATE(2647), 1, + sym_type_parameters, + STATE(3359), 1, + sym_where_clause, + STATE(2420), 2, + sym_line_comment, + sym_block_comment, + [75967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4895), 2, - anon_sym_COLON, + ACTIONS(1017), 1, + anon_sym_DOT_DOT, + STATE(2421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1019), 5, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(5392), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75988] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5284), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5272), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2391), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - [75371] = 9, + [76013] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5395), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(781), 1, sym_declaration_list, - STATE(2832), 1, + STATE(2569), 1, + sym_trait_bounds, + STATE(3223), 1, sym_where_clause, - STATE(2392), 2, + STATE(2423), 2, sym_line_comment, sym_block_comment, - [75400] = 4, + [76042] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2393), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5434), 1, + anon_sym_SEMI, + STATE(655), 1, + sym_declaration_list, + STATE(3083), 1, + sym_where_clause, + STATE(2424), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75419] = 9, + [76071] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5397), 1, + ACTIONS(5436), 1, anon_sym_SEMI, - STATE(576), 1, + STATE(1311), 1, sym_declaration_list, - STATE(2976), 1, + STATE(2955), 1, sym_where_clause, - STATE(2394), 2, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [75448] = 9, + [76100] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5399), 1, + ACTIONS(5438), 1, anon_sym_SEMI, - STATE(579), 1, + STATE(1313), 1, sym_declaration_list, - STATE(2992), 1, + STATE(2956), 1, sym_where_clause, - STATE(2395), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - [75477] = 9, + [76129] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5401), 1, + ACTIONS(5440), 1, anon_sym_SEMI, - STATE(581), 1, + STATE(1315), 1, sym_declaration_list, - STATE(3030), 1, + STATE(2957), 1, sym_where_clause, - STATE(2396), 2, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [75506] = 9, + [76158] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5403), 1, + ACTIONS(5442), 1, anon_sym_SEMI, - STATE(583), 1, + STATE(1317), 1, sym_declaration_list, - STATE(2798), 1, + STATE(2958), 1, sym_where_clause, - STATE(2397), 2, + STATE(2428), 2, sym_line_comment, sym_block_comment, - [75535] = 9, + [76187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(4945), 2, anon_sym_COLON, - ACTIONS(5308), 1, + anon_sym_PIPE, + STATE(2429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3626), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(5405), 1, - anon_sym_GT, - ACTIONS(5407), 1, anon_sym_COMMA, - STATE(2892), 1, - sym_trait_bounds, - STATE(2896), 1, - aux_sym_type_arguments_repeat1, - STATE(2398), 2, + anon_sym_DASH_GT, + [76208] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5284), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5408), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2430), 2, sym_line_comment, sym_block_comment, - [75564] = 9, + [76233] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, - anon_sym_PLUS, - ACTIONS(5074), 1, + ACTIONS(5444), 1, + anon_sym_COMMA, + STATE(2442), 1, + aux_sym_where_clause_repeat1, + STATE(2431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [76256] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5405), 1, + ACTIONS(5360), 1, + anon_sym_PLUS, + ACTIONS(5446), 1, anon_sym_GT, - ACTIONS(5407), 1, + ACTIONS(5448), 1, anon_sym_COMMA, - STATE(2892), 1, + STATE(2885), 1, sym_trait_bounds, - STATE(2896), 1, + STATE(2886), 1, aux_sym_type_arguments_repeat1, - STATE(2399), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [75593] = 5, + [76285] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, - anon_sym_DOT_DOT, - STATE(2400), 2, + ACTIONS(3140), 1, + anon_sym_PLUS, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5446), 1, + anon_sym_GT, + ACTIONS(5448), 1, + anon_sym_COMMA, + STATE(2885), 1, + sym_trait_bounds, + STATE(2886), 1, + aux_sym_type_arguments_repeat1, + STATE(2433), 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, - [75614] = 5, + [76314] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, - anon_sym_DOT_DOT, - STATE(2401), 2, + ACTIONS(3626), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4945), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5370), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2434), 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, - [75635] = 5, + [76337] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_DOT_DOT, - STATE(2402), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5450), 1, + anon_sym_if, + STATE(3664), 1, + sym_label, + STATE(1456), 2, + sym_if_expression, + sym_block, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75656] = 5, + [76364] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(929), 1, - anon_sym_DOT_DOT, - STATE(2403), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5452), 1, + anon_sym_SEMI, + STATE(691), 1, + sym_declaration_list, + STATE(2870), 1, + sym_where_clause, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(931), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75677] = 9, + [76393] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(757), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5454), 1, + anon_sym_SEMI, + STATE(697), 1, sym_declaration_list, - STATE(2723), 1, - sym_trait_bounds, - STATE(3280), 1, + STATE(2877), 1, sym_where_clause, - STATE(2404), 2, + STATE(2437), 2, sym_line_comment, sym_block_comment, - [75706] = 9, + [76422] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5302), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1321), 1, - sym_enum_variant_list, - STATE(2569), 1, - sym_type_parameters, - STATE(3352), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5456), 1, + anon_sym_SEMI, + STATE(1188), 1, + sym_declaration_list, + STATE(2904), 1, sym_where_clause, - STATE(2405), 2, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [75735] = 9, + [76451] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5409), 1, + ACTIONS(5458), 1, anon_sym_SEMI, - STATE(1325), 1, + STATE(1192), 1, sym_declaration_list, - STATE(3084), 1, + STATE(2906), 1, sym_where_clause, - STATE(2406), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - [75764] = 9, + [76480] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4953), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1335), 1, - sym_field_declaration_list, - STATE(2585), 1, - sym_type_parameters, - STATE(3193), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5460), 1, + anon_sym_SEMI, + STATE(1209), 1, + sym_declaration_list, + STATE(2911), 1, sym_where_clause, - STATE(2407), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [75793] = 6, + [76509] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4907), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5084), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5411), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2408), 2, + STATE(1214), 1, + sym_declaration_list, + STATE(2656), 1, + sym_trait_bounds, + STATE(3234), 1, + sym_where_clause, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [75816] = 6, + [76538] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5392), 1, - anon_sym_RBRACK, - ACTIONS(4895), 2, - anon_sym_PIPE, + ACTIONS(5464), 1, anon_sym_COMMA, - STATE(2409), 2, + STATE(2442), 3, sym_line_comment, sym_block_comment, - ACTIONS(3656), 3, + aux_sym_where_clause_repeat1, + ACTIONS(5462), 4, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [75839] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [76559] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5286), 1, + ACTIONS(4683), 1, anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5202), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2410), 2, + ACTIONS(5066), 1, + anon_sym_for, + STATE(2443), 2, sym_line_comment, sym_block_comment, - [75864] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(3425), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(539), 1, - sym_declaration_list, - STATE(2744), 1, - sym_trait_bounds, - STATE(3313), 1, - sym_where_clause, - STATE(2411), 2, - sym_line_comment, - sym_block_comment, - [75893] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5286), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5332), 2, + anon_sym_PLUS, + anon_sym_where, + [76582] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4871), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5401), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2412), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, - [75918] = 8, + [76605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5048), 1, - anon_sym_DOT_DOT, - ACTIONS(5052), 1, - anon_sym_ref, - ACTIONS(5054), 1, - sym_mutable_specifier, - STATE(2413), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(5068), 1, + anon_sym_for, + STATE(2445), 2, sym_line_comment, sym_block_comment, - STATE(3108), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [75945] = 5, + ACTIONS(3425), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76628] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2414), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_for, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 4, - anon_sym_RPAREN, + ACTIONS(3425), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [75966] = 9, + anon_sym_where, + [76651] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5414), 1, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5467), 1, anon_sym_SEMI, - ACTIONS(5416), 1, - anon_sym_EQ, - STATE(3056), 1, - sym_trait_bounds, - STATE(3533), 1, + STATE(609), 1, + sym_declaration_list, + STATE(3129), 1, sym_where_clause, - STATE(2415), 2, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [75995] = 9, + [76680] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5418), 1, - anon_sym_SEMI, - STATE(653), 1, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(764), 1, sym_declaration_list, - STATE(2943), 1, + STATE(2570), 1, + sym_trait_bounds, + STATE(3143), 1, sym_where_clause, - STATE(2416), 2, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [76024] = 6, + [76709] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, + ACTIONS(4683), 1, anon_sym_COLON_COLON, - ACTIONS(5014), 1, + ACTIONS(5074), 1, anon_sym_for, - STATE(2417), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, + ACTIONS(3425), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76047] = 6, + [76732] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5411), 1, - anon_sym_RBRACK, - ACTIONS(4907), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2418), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5469), 1, + anon_sym_SEMI, + STATE(1354), 1, + sym_declaration_list, + STATE(2964), 1, + sym_where_clause, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [76070] = 9, + [76761] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(658), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5471), 1, + anon_sym_SEMI, + STATE(1356), 1, sym_declaration_list, - STATE(2775), 1, - sym_trait_bounds, - STATE(3143), 1, + STATE(2965), 1, sym_where_clause, - STATE(2419), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - [76099] = 6, + [76790] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(5006), 1, - anon_sym_for, - STATE(2420), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5350), 1, + anon_sym_GT, + ACTIONS(5352), 1, + anon_sym_COMMA, + ACTIONS(5360), 1, + anon_sym_PLUS, + STATE(3038), 1, + sym_trait_bounds, + STATE(3039), 1, + aux_sym_type_arguments_repeat1, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76122] = 9, + [76819] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4747), 1, + anon_sym_DOT_DOT, + STATE(2453), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4745), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76840] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5420), 1, + ACTIONS(5473), 1, anon_sym_SEMI, - STATE(549), 1, + STATE(526), 1, sym_declaration_list, - STATE(3071), 1, + STATE(2893), 1, sym_where_clause, - STATE(2421), 2, + STATE(2454), 2, sym_line_comment, sym_block_comment, - [76151] = 9, + [76869] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5422), 1, + ACTIONS(5475), 1, anon_sym_SEMI, - STATE(1361), 1, + STATE(1162), 1, sym_declaration_list, - STATE(2821), 1, + STATE(2871), 1, sym_where_clause, - STATE(2422), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - [76180] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [76898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5424), 1, - sym_identifier, - ACTIONS(5426), 1, - anon_sym_ref, - ACTIONS(5428), 1, - sym_mutable_specifier, - ACTIONS(5430), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2423), 2, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [76209] = 6, + ACTIONS(5477), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [76916] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(4984), 1, - anon_sym_for, - STATE(2424), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5479), 1, + anon_sym_SEMI, + STATE(603), 1, + sym_block, + STATE(3713), 1, + sym_label, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76232] = 6, + [76942] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(5016), 1, - anon_sym_for, - STATE(2425), 2, + ACTIONS(5481), 1, + anon_sym_RPAREN, + ACTIONS(5484), 1, + anon_sym_COMMA, + STATE(3069), 1, + aux_sym_parameters_repeat1, + ACTIONS(4578), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76255] = 6, + [76966] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(5020), 1, - anon_sym_for, - STATE(2426), 2, + ACTIONS(1399), 1, + anon_sym_RPAREN, + ACTIONS(5487), 1, + anon_sym_COMMA, + STATE(2924), 1, + aux_sym_parameters_repeat1, + ACTIONS(4578), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76278] = 9, + [76990] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(1371), 1, - sym_declaration_list, - STATE(2731), 1, - sym_trait_bounds, - STATE(3267), 1, - sym_where_clause, - STATE(2427), 2, + ACTIONS(3044), 1, + anon_sym_POUND, + ACTIONS(5489), 1, + sym_identifier, + ACTIONS(5491), 1, + sym_integer_literal, + STATE(1074), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1433), 1, + sym_attribute_item, + STATE(2460), 2, sym_line_comment, sym_block_comment, - [76307] = 9, + [77016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, + STATE(2461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5493), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77034] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4982), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - STATE(679), 1, - sym_field_declaration_list, - STATE(2767), 1, + ACTIONS(5495), 1, + anon_sym_EQ, + STATE(2923), 1, sym_type_parameters, - STATE(3347), 1, + STATE(3443), 1, sym_where_clause, - STATE(2428), 2, + STATE(2462), 2, sym_line_comment, sym_block_comment, - [76336] = 4, + [77060] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2429), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5497), 1, + sym_identifier, + ACTIONS(5499), 1, + anon_sym_GT, + ACTIONS(5501), 1, + anon_sym_COMMA, + STATE(2926), 1, + sym_lifetime, + STATE(2463), 2, + sym_line_comment, + sym_block_comment, + [77086] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3662), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [77104] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2465), 2, sym_line_comment, sym_block_comment, - ACTIONS(5432), 5, + ACTIONS(5503), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76354] = 7, + [77122] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(3425), 1, + anon_sym_PLUS, + ACTIONS(4578), 2, anon_sym_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2430), 2, + anon_sym_PIPE, + ACTIONS(5505), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2466), 2, sym_line_comment, sym_block_comment, - [76378] = 6, + [77144] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5434), 1, - anon_sym_RBRACK, - ACTIONS(3365), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4544), 2, + ACTIONS(4935), 2, + anon_sym_COLON, anon_sym_PIPE, + STATE(2467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3864), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - STATE(2431), 2, + [77164] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5379), 1, + anon_sym_GT, + ACTIONS(5381), 1, + anon_sym_COMMA, + STATE(3016), 1, + sym_trait_bounds, + STATE(3017), 1, + aux_sym_type_arguments_repeat1, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [76400] = 8, + [77190] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_POUND, - ACTIONS(5437), 1, - sym_identifier, - ACTIONS(5439), 1, - sym_integer_literal, - STATE(1059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1482), 1, - sym_attribute_item, - STATE(2432), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4739), 1, + anon_sym_COLON, + STATE(1993), 1, + sym_type_arguments, + STATE(2456), 1, + sym_trait_bounds, + STATE(2469), 2, + sym_line_comment, + sym_block_comment, + [77216] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + STATE(1684), 1, + sym_parameters, + STATE(1993), 1, + sym_type_arguments, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [76426] = 8, + [77242] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, + ACTIONS(5508), 1, anon_sym_SEMI, - ACTIONS(5443), 1, + ACTIONS(5510), 1, anon_sym_COLON, - ACTIONS(5445), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(5447), 1, + ACTIONS(5514), 1, anon_sym_EQ, - ACTIONS(5449), 1, + ACTIONS(5516), 1, anon_sym_else, - STATE(2433), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - [76452] = 4, + [77268] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2434), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5518), 1, + anon_sym_SEMI, + STATE(1387), 1, + sym_block, + STATE(3716), 1, + sym_label, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(5451), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76470] = 5, + [77294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3842), 2, + ACTIONS(3758), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2435), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 3, + ACTIONS(4757), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [76490] = 8, + [77314] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - STATE(1352), 1, - sym_parameters, - STATE(1974), 1, - sym_type_arguments, - STATE(2436), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5520), 1, + anon_sym_SEMI, + STATE(588), 1, + sym_block, + STATE(3713), 1, + sym_label, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [76516] = 5, + [77340] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3888), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2437), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + anon_sym_SEMI, + STATE(1233), 1, + sym_block, + STATE(3716), 1, + sym_label, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76536] = 7, + [77366] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_RPAREN, - ACTIONS(5455), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_parameters_repeat1, - ACTIONS(4544), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2438), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5524), 1, + anon_sym_SEMI, + STATE(1289), 1, + sym_block, + STATE(3716), 1, + sym_label, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [76560] = 5, + [77392] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4859), 2, + ACTIONS(5084), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2439), 2, + ACTIONS(5362), 1, + anon_sym_GT, + ACTIONS(5364), 1, + anon_sym_COMMA, + STATE(2992), 1, + sym_trait_bounds, + STATE(2993), 1, + aux_sym_type_arguments_repeat1, + STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 3, + [77418] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1381), 1, anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(5526), 1, anon_sym_COMMA, - [76580] = 8, + STATE(2901), 1, + aux_sym_parameters_repeat1, + ACTIONS(4578), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2478), 2, + sym_line_comment, + sym_block_comment, + [77442] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4843), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(5457), 1, + ACTIONS(5528), 1, anon_sym_SEMI, - ACTIONS(5459), 1, + ACTIONS(5530), 1, anon_sym_COLON, - ACTIONS(5461), 1, + ACTIONS(5532), 1, anon_sym_EQ, - ACTIONS(5463), 1, + ACTIONS(5534), 1, anon_sym_else, - STATE(2440), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [76606] = 4, + [77468] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2441), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(5465), 5, + ACTIONS(5536), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76624] = 8, + [77486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5467), 1, + STATE(2481), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3694), 5, anon_sym_SEMI, - STATE(511), 1, - sym_block, - STATE(3668), 1, - sym_label, - STATE(2442), 2, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77504] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [76650] = 6, + ACTIONS(3672), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [77522] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, - anon_sym_RBRACK, - ACTIONS(3768), 2, - anon_sym_SEMI, + ACTIONS(3140), 1, anon_sym_PLUS, - ACTIONS(4859), 2, - anon_sym_PIPE, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(3374), 1, + sym_trait_bounds, + ACTIONS(5538), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2443), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [76672] = 8, + [77546] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - STATE(1974), 1, - sym_type_arguments, - STATE(1988), 1, - sym_parameters, - STATE(2444), 2, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [76698] = 4, + ACTIONS(5540), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77564] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2445), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(3074), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3374), 1, + sym_trait_bounds, + ACTIONS(5538), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(5472), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76716] = 8, + [77588] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(1822), 1, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5542), 1, + anon_sym_SEMI, + STATE(501), 1, sym_block, - STATE(3673), 1, + STATE(3713), 1, sym_label, - STATE(2446), 2, + STATE(2486), 2, sym_line_comment, sym_block_comment, - [76742] = 7, + [77614] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5474), 1, - anon_sym_RPAREN, - ACTIONS(5477), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_parameters_repeat1, - ACTIONS(4544), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2447), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [76766] = 6, + ACTIONS(3680), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [77632] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(4544), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5434), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2448), 2, + STATE(1834), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2488), 2, sym_line_comment, sym_block_comment, - [76788] = 7, + [77658] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1413), 1, + ACTIONS(4909), 1, anon_sym_RPAREN, - ACTIONS(5480), 1, - anon_sym_COMMA, - STATE(2882), 1, - aux_sym_parameters_repeat1, - ACTIONS(4544), 2, + ACTIONS(5544), 1, anon_sym_COLON, + ACTIONS(5546), 1, anon_sym_PIPE, - STATE(2449), 2, - sym_line_comment, - sym_block_comment, - [76812] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(3038), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3188), 1, - sym_trait_bounds, - ACTIONS(5482), 2, - anon_sym_GT, + ACTIONS(5548), 1, anon_sym_COMMA, - STATE(2450), 2, + STATE(3081), 1, + aux_sym_closure_parameters_repeat1, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [76836] = 8, + [77684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5310), 1, - anon_sym_GT, - ACTIONS(5312), 1, - anon_sym_COMMA, - STATE(2845), 1, - sym_trait_bounds, - STATE(2846), 1, - aux_sym_type_arguments_repeat1, - STATE(2451), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - [76862] = 5, + ACTIONS(5550), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4544), 2, + ACTIONS(4578), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2452), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3365), 3, + ACTIONS(3425), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [76882] = 8, + [77722] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5484), 1, - anon_sym_SEMI, - STATE(767), 1, - sym_block, - STATE(3668), 1, - sym_label, - STATE(2453), 2, + ACTIONS(3864), 1, + anon_sym_PLUS, + ACTIONS(4935), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5552), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2492), 2, sym_line_comment, sym_block_comment, - [76908] = 7, + [77744] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, + ACTIONS(5555), 1, anon_sym_RPAREN, - ACTIONS(5488), 1, + ACTIONS(5557), 1, anon_sym_COMMA, - STATE(2854), 1, + STATE(2994), 1, aux_sym_parameters_repeat1, - ACTIONS(4544), 2, + ACTIONS(4578), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2454), 2, + STATE(2493), 2, sym_line_comment, sym_block_comment, - [76932] = 8, + [77768] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(3058), 1, anon_sym_SQUOTE, - ACTIONS(5490), 1, + ACTIONS(5559), 1, sym_identifier, - ACTIONS(5492), 1, + ACTIONS(5561), 1, anon_sym_GT, - ACTIONS(5494), 1, + ACTIONS(5563), 1, anon_sym_COMMA, - STATE(2910), 1, + STATE(3029), 1, sym_lifetime, - STATE(2455), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - [76958] = 8, + [77794] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(1461), 1, + ACTIONS(5565), 1, + anon_sym_move, + STATE(476), 1, sym_block, - STATE(3622), 1, + STATE(3717), 1, sym_label, - STATE(2456), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - [76984] = 8, + [77820] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5496), 1, - anon_sym_SEMI, - STATE(1094), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2457), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [77010] = 7, + ACTIONS(5567), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77838] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4210), 1, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - anon_sym_STAR, - STATE(3080), 1, - sym_use_list, - ACTIONS(5178), 2, - sym_identifier, - sym_super, - STATE(2458), 2, + ACTIONS(5569), 1, + anon_sym_SEMI, + STATE(554), 1, + sym_block, + STATE(3713), 1, + sym_label, + STATE(2497), 2, sym_line_comment, sym_block_comment, - [77034] = 8, + [77864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(1870), 1, - sym_block, - STATE(3673), 1, - sym_label, - STATE(2459), 2, + STATE(2498), 2, sym_line_comment, sym_block_comment, - [77060] = 8, + ACTIONS(5571), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77882] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5498), 1, - anon_sym_STAR_SLASH, - ACTIONS(5500), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5502), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5504), 1, - sym__block_comment_content, - STATE(3228), 1, - sym__block_doc_comment_marker, - STATE(2460), 2, + ACTIONS(5575), 1, + anon_sym_COLON_COLON, + ACTIONS(5577), 1, + anon_sym_as, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [77086] = 4, + ACTIONS(5573), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [77904] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2461), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3542), 5, + ACTIONS(4963), 1, + anon_sym_PIPE, + ACTIONS(5579), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5581), 1, anon_sym_COLON, + ACTIONS(5583), 1, anon_sym_EQ, - anon_sym_where, - [77104] = 7, + ACTIONS(5585), 1, + anon_sym_else, + STATE(2500), 2, + sym_line_comment, + sym_block_comment, + [77930] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5308), 1, + ACTIONS(5360), 1, anon_sym_PLUS, - STATE(3316), 1, + STATE(3311), 1, sym_trait_bounds, - ACTIONS(5506), 2, + ACTIONS(5587), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2462), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - [77128] = 4, + [77954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2463), 2, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(5508), 5, + ACTIONS(5589), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77146] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3144), 1, - anon_sym_PLUS, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(3316), 1, - sym_trait_bounds, - ACTIONS(5506), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2464), 2, - sym_line_comment, - sym_block_comment, - [77170] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1393), 1, - anon_sym_RPAREN, - ACTIONS(5510), 1, - anon_sym_COMMA, - STATE(2887), 1, - aux_sym_parameters_repeat1, - ACTIONS(4544), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2465), 2, - sym_line_comment, - sym_block_comment, - [77194] = 8, + [77972] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5512), 1, - sym_identifier, - ACTIONS(5514), 1, - anon_sym_GT, - ACTIONS(5516), 1, - anon_sym_COMMA, - STATE(2889), 1, - sym_lifetime, - STATE(2466), 2, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5591), 1, + anon_sym_SEMI, + STATE(1391), 1, + sym_block, + STATE(3716), 1, + sym_label, + STATE(2503), 2, sym_line_comment, sym_block_comment, - [77220] = 8, + [77998] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5518), 1, + ACTIONS(5593), 1, anon_sym_SEMI, - STATE(1142), 1, + STATE(1320), 1, sym_block, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2467), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - [77246] = 6, + [78024] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5520), 1, - anon_sym_COMMA, - STATE(2489), 1, - aux_sym_where_clause_repeat1, - STATE(2468), 2, + ACTIONS(5597), 1, + anon_sym_COLON_COLON, + ACTIONS(5599), 1, + anon_sym_as, + STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3403), 3, + ACTIONS(5595), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [77268] = 8, + anon_sym_RBRACE, + anon_sym_COMMA, + [78046] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(1700), 1, - sym_block, - STATE(3673), 1, - sym_label, - STATE(2469), 2, + STATE(2506), 2, sym_line_comment, sym_block_comment, - [77294] = 8, + ACTIONS(3538), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78064] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5522), 1, - anon_sym_SEMI, - STATE(1176), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2470), 2, + ACTIONS(5601), 1, + anon_sym_STAR_SLASH, + ACTIONS(5603), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5605), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5607), 1, + sym__block_comment_content, + STATE(3365), 1, + sym__block_doc_comment_marker, + STATE(2507), 2, sym_line_comment, sym_block_comment, - [77320] = 8, + [78090] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5066), 1, + ACTIONS(4230), 1, anon_sym_LBRACE, - ACTIONS(5524), 1, - anon_sym_SEMI, - STATE(702), 1, - sym_block, - STATE(3668), 1, - sym_label, - STATE(2471), 2, + ACTIONS(5611), 1, + anon_sym_STAR, + STATE(2847), 1, + sym_use_list, + ACTIONS(5609), 2, + sym_identifier, + sym_super, + STATE(2508), 2, sym_line_comment, sym_block_comment, - [77346] = 8, + [78114] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5526), 1, - anon_sym_RPAREN, - ACTIONS(5528), 1, + ACTIONS(4741), 1, + anon_sym_EQ, + ACTIONS(5084), 1, anon_sym_COLON, - ACTIONS(5530), 1, + STATE(3092), 1, + sym_trait_bounds, + ACTIONS(4743), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2906), 1, - aux_sym_slice_pattern_repeat1, - STATE(2472), 2, - sym_line_comment, - sym_block_comment, - [77372] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5532), 1, - anon_sym_SEMI, - STATE(1198), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2473), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [77398] = 4, + [78138] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2474), 2, + STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(5534), 5, + ACTIONS(5613), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [77416] = 4, + anon_sym_SQUOTE, + [78156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2475), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(5536), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3302), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [77434] = 7, + anon_sym_as, + [78174] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(5540), 1, - anon_sym_STAR, - STATE(3077), 1, - sym_use_list, - ACTIONS(5538), 2, - sym_identifier, - sym_super, - STATE(2476), 2, + ACTIONS(4963), 1, + anon_sym_PIPE, + ACTIONS(5615), 1, + anon_sym_SEMI, + ACTIONS(5617), 1, + anon_sym_COLON, + ACTIONS(5619), 1, + anon_sym_EQ, + ACTIONS(5621), 1, + anon_sym_else, + STATE(2512), 2, sym_line_comment, sym_block_comment, - [77458] = 7, + [78200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_COLON, - ACTIONS(5206), 1, + ACTIONS(3892), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2477), 2, + STATE(2513), 2, sym_line_comment, sym_block_comment, - [77482] = 8, + ACTIONS(4757), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78220] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5542), 1, - anon_sym_SEMI, - ACTIONS(5544), 1, - anon_sym_COLON, - ACTIONS(5546), 1, - anon_sym_EQ, - ACTIONS(5548), 1, - anon_sym_else, - STATE(2478), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5082), 1, + anon_sym_PLUS, + STATE(1899), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2514), 2, sym_line_comment, sym_block_comment, - [77508] = 8, + [78246] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, + ACTIONS(5623), 1, anon_sym_SEMI, - STATE(1227), 1, + STATE(682), 1, sym_block, - STATE(3671), 1, + STATE(3713), 1, sym_label, - STATE(2479), 2, + STATE(2515), 2, sym_line_comment, sym_block_comment, - [77534] = 8, + [78272] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5552), 1, - anon_sym_SEMI, - STATE(1239), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2480), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5625), 1, + anon_sym_RPAREN, + ACTIONS(5627), 1, + anon_sym_COLON, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_slice_pattern_repeat1, + STATE(2516), 2, sym_line_comment, sym_block_comment, - [77560] = 6, + [78298] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3768), 1, + ACTIONS(3140), 1, anon_sym_PLUS, - ACTIONS(4859), 2, + ACTIONS(5084), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5469), 2, - anon_sym_RPAREN, + STATE(3311), 1, + sym_trait_bounds, + ACTIONS(5587), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2481), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [77582] = 8, + [78322] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5554), 1, - anon_sym_SEMI, - STATE(1244), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2482), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5446), 1, + anon_sym_GT, + ACTIONS(5448), 1, + anon_sym_COMMA, + STATE(2885), 1, + sym_trait_bounds, + STATE(2886), 1, + aux_sym_type_arguments_repeat1, + STATE(2518), 2, sym_line_comment, sym_block_comment, - [77608] = 8, + [78348] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5556), 1, - anon_sym_SEMI, - STATE(1268), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2483), 2, + ACTIONS(5631), 1, + anon_sym_RPAREN, + ACTIONS(5633), 1, + anon_sym_COMMA, + STATE(2895), 1, + aux_sym_parameters_repeat1, + ACTIONS(4578), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2519), 2, sym_line_comment, sym_block_comment, - [77634] = 8, + [78372] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5558), 1, + ACTIONS(5635), 1, anon_sym_SEMI, - STATE(1274), 1, + STATE(1334), 1, sym_block, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2484), 2, + STATE(2520), 2, sym_line_comment, sym_block_comment, - [77660] = 6, + [78398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5562), 1, - anon_sym_COLON_COLON, - ACTIONS(5564), 1, - anon_sym_as, - STATE(2485), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(5560), 3, + ACTIONS(5462), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - [77682] = 8, + anon_sym_SQUOTE, + [78416] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5566), 1, + ACTIONS(5637), 1, anon_sym_SEMI, - STATE(1288), 1, + STATE(1186), 1, sym_block, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2486), 2, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [77708] = 8, + [78442] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5568), 1, + ACTIONS(5639), 1, anon_sym_SEMI, - STATE(1292), 1, + STATE(1382), 1, sym_block, - STATE(3671), 1, + STATE(3716), 1, sym_label, - STATE(2487), 2, + STATE(2523), 2, sym_line_comment, sym_block_comment, - [77734] = 8, + [78468] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5570), 1, - anon_sym_move, - STATE(1694), 1, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5641), 1, + anon_sym_SEMI, + STATE(535), 1, sym_block, - STATE(3673), 1, + STATE(3713), 1, sym_label, - STATE(2488), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - [77760] = 5, + [78494] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5574), 1, - anon_sym_COMMA, - ACTIONS(5572), 3, - anon_sym_SEMI, + ACTIONS(343), 1, anon_sym_LBRACE, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(2489), 3, + ACTIONS(5082), 1, + anon_sym_PLUS, + STATE(1457), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2525), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [77780] = 7, + [78520] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4693), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(2983), 1, - sym_trait_bounds, - ACTIONS(4695), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2490), 2, + STATE(2526), 2, sym_line_comment, sym_block_comment, - [77804] = 8, + ACTIONS(5643), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78538] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - anon_sym_SEMI, - STATE(506), 1, - sym_block, - STATE(3668), 1, - sym_label, - STATE(2491), 2, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5274), 1, + anon_sym_COLON, + ACTIONS(5276), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2527), 2, sym_line_comment, sym_block_comment, - [77830] = 8, + [78562] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4542), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - ACTIONS(4691), 1, - anon_sym_COLON, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2548), 1, - sym_trait_bounds, - STATE(2492), 2, + STATE(2010), 1, + sym_parameters, + STATE(2528), 2, sym_line_comment, sym_block_comment, - [77856] = 4, + [78588] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + ACTIONS(5505), 1, + anon_sym_RBRACK, + ACTIONS(3425), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4578), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77874] = 6, + [78610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 1, - anon_sym_COMMA, - STATE(2468), 1, - aux_sym_where_clause_repeat1, - STATE(2494), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(5579), 3, + ACTIONS(5645), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [77896] = 8, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78628] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - STATE(1615), 1, - sym_parameters, - STATE(1974), 1, - sym_type_arguments, - STATE(2495), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5647), 1, + anon_sym_SEMI, + STATE(607), 1, + sym_block, + STATE(3713), 1, + sym_label, + STATE(2531), 2, sym_line_comment, sym_block_comment, - [77922] = 8, + [78654] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5583), 1, - anon_sym_move, - STATE(490), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + STATE(1720), 1, sym_block, - STATE(3672), 1, + STATE(3718), 1, sym_label, - STATE(2496), 2, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [77948] = 4, + [78680] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2497), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3270), 5, - anon_sym_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5082), 1, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [77966] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5362), 1, - anon_sym_GT, - ACTIONS(5364), 1, - anon_sym_COMMA, - STATE(2959), 1, - sym_trait_bounds, - STATE(2960), 1, - aux_sym_type_arguments_repeat1, - STATE(2498), 2, + STATE(1475), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2533), 2, sym_line_comment, sym_block_comment, - [77992] = 7, + [78706] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5585), 1, - anon_sym_RPAREN, - ACTIONS(5587), 1, - anon_sym_COMMA, - STATE(2962), 1, - aux_sym_parameters_repeat1, - ACTIONS(4544), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2499), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [78016] = 4, + ACTIONS(3716), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78724] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2500), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5589), 5, + ACTIONS(5552), 1, + anon_sym_RBRACK, + ACTIONS(3864), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4935), 2, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_where, - [78034] = 8, + STATE(2535), 2, + sym_line_comment, + sym_block_comment, + [78746] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5066), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5591), 1, + ACTIONS(5649), 1, anon_sym_SEMI, - STATE(611), 1, + STATE(549), 1, sym_block, - STATE(3668), 1, + STATE(3713), 1, sym_label, - STATE(2501), 2, + STATE(2536), 2, sym_line_comment, sym_block_comment, - [78060] = 7, + [78772] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1391), 1, - anon_sym_RPAREN, - ACTIONS(5593), 1, - anon_sym_COMMA, - STATE(2968), 1, - aux_sym_parameters_repeat1, - ACTIONS(4544), 2, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5232), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2502), 2, + ACTIONS(5276), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [78084] = 8, + [78796] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5595), 1, - sym_identifier, - ACTIONS(5597), 1, - anon_sym_GT, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(2970), 1, - sym_lifetime, - STATE(2503), 2, + ACTIONS(5651), 1, + anon_sym_move, + STATE(1746), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [78110] = 8, + [78822] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4857), 1, - anon_sym_RPAREN, - ACTIONS(5601), 1, - anon_sym_COLON, - ACTIONS(5603), 1, - anon_sym_PIPE, - ACTIONS(5605), 1, - anon_sym_COMMA, - STATE(2848), 1, - aux_sym_closure_parameters_repeat1, - STATE(2504), 2, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(5304), 1, + anon_sym_STAR, + STATE(2853), 1, + sym_use_list, + ACTIONS(5302), 2, + sym_identifier, + sym_super, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [78136] = 7, + [78846] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, - anon_sym_PLUS, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(3188), 1, - sym_trait_bounds, - ACTIONS(5482), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2505), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - [78160] = 8, + ACTIONS(3648), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78864] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5382), 1, - anon_sym_GT, - ACTIONS(5384), 1, - anon_sym_COMMA, - STATE(2989), 1, - sym_trait_bounds, - STATE(2990), 1, - aux_sym_type_arguments_repeat1, - STATE(2506), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5653), 1, + anon_sym_SEMI, + STATE(551), 1, + sym_block, + STATE(3713), 1, + sym_label, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [78186] = 4, + [78890] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2507), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5655), 1, + anon_sym_move, + STATE(1445), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5607), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78204] = 8, + [78916] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(1466), 1, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5657), 1, + anon_sym_SEMI, + STATE(1339), 1, sym_block, - STATE(3622), 1, + STATE(3716), 1, sym_label, - STATE(2508), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [78230] = 4, + [78942] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2509), 2, + ACTIONS(5599), 1, + anon_sym_as, + ACTIONS(5659), 1, + anon_sym_COLON_COLON, + STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(5609), 5, + ACTIONS(5595), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [78248] = 4, + [78964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2510), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(5611), 5, + ACTIONS(5661), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78266] = 4, + [78982] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2511), 2, + ACTIONS(5599), 1, + anon_sym_as, + ACTIONS(5663), 1, + anon_sym_COLON_COLON, + STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5613), 5, + ACTIONS(5595), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [78284] = 4, + [79004] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2512), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 5, + ACTIONS(5665), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78302] = 8, + [79022] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4843), 1, - anon_sym_PIPE, - ACTIONS(5617), 1, - anon_sym_SEMI, - ACTIONS(5619), 1, + ACTIONS(1405), 1, + anon_sym_RPAREN, + ACTIONS(5667), 1, + anon_sym_COMMA, + STATE(2998), 1, + aux_sym_parameters_repeat1, + ACTIONS(4578), 2, anon_sym_COLON, - ACTIONS(5621), 1, - anon_sym_EQ, - ACTIONS(5623), 1, - anon_sym_else, - STATE(2513), 2, + anon_sym_PIPE, + STATE(2548), 2, sym_line_comment, sym_block_comment, - [78328] = 4, + [79046] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3500), 5, + ACTIONS(3354), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - anon_sym_if, - [78346] = 4, + STATE(1137), 1, + sym_parameters, + STATE(1993), 1, + sym_type_arguments, + STATE(2549), 2, + sym_line_comment, + sym_block_comment, + [79072] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2515), 2, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5669), 1, + anon_sym_EQ, + STATE(3124), 1, + sym_type_parameters, + STATE(3697), 1, + sym_where_clause, + STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [78364] = 8, + [79098] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3058), 1, anon_sym_SQUOTE, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5625), 1, - anon_sym_SEMI, - STATE(586), 1, - sym_block, - STATE(3668), 1, - sym_label, - STATE(2516), 2, + ACTIONS(5671), 1, + sym_identifier, + ACTIONS(5673), 1, + anon_sym_GT, + ACTIONS(5675), 1, + anon_sym_COMMA, + STATE(3000), 1, + sym_lifetime, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [78390] = 8, + [79124] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(1396), 1, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5677), 1, + anon_sym_SEMI, + STATE(580), 1, sym_block, - STATE(3622), 1, + STATE(3713), 1, sym_label, - STATE(2517), 2, - sym_line_comment, - sym_block_comment, - [78416] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2518), 2, + STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78434] = 4, + [79150] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2519), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, + anon_sym_SEMI, + STATE(751), 1, + sym_block, + STATE(3713), 1, + sym_label, + STATE(2553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78452] = 4, + [79176] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2520), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + ACTIONS(5350), 1, + anon_sym_GT, + ACTIONS(5352), 1, + anon_sym_COMMA, + STATE(3038), 1, + sym_trait_bounds, + STATE(3039), 1, + aux_sym_type_arguments_repeat1, + STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78470] = 4, + [79202] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2521), 2, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(5627), 5, + ACTIONS(5681), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78488] = 8, + [79220] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5629), 1, - anon_sym_move, - STATE(1380), 1, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5683), 1, + anon_sym_SEMI, + STATE(1364), 1, sym_block, - STATE(3622), 1, + STATE(3716), 1, sym_label, - STATE(2522), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [78514] = 8, + [79246] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5066), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5631), 1, + ACTIONS(5685), 1, anon_sym_SEMI, - STATE(623), 1, + STATE(598), 1, sym_block, - STATE(3668), 1, + STATE(3713), 1, sym_label, - STATE(2523), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [78540] = 8, + [79272] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5633), 1, - anon_sym_SEMI, - STATE(501), 1, - sym_block, - STATE(3668), 1, - sym_label, - STATE(2524), 2, + STATE(2558), 2, sym_line_comment, sym_block_comment, - [78566] = 8, + ACTIONS(5687), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - ACTIONS(5405), 1, - anon_sym_GT, - ACTIONS(5407), 1, + ACTIONS(5689), 1, + anon_sym_RPAREN, + ACTIONS(5691), 1, anon_sym_COMMA, - STATE(2892), 1, - sym_trait_bounds, - STATE(2896), 1, - aux_sym_type_arguments_repeat1, - STATE(2525), 2, + STATE(3069), 1, + aux_sym_parameters_repeat1, + ACTIONS(4578), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2559), 2, sym_line_comment, sym_block_comment, - [78592] = 4, + [79314] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2526), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5693), 1, + anon_sym_SEMI, + STATE(1372), 1, + sym_block, + STATE(3716), 1, + sym_label, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 5, + [79340] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2561), 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, - [78610] = 8, + [79358] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5066), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(5635), 1, + ACTIONS(5695), 1, anon_sym_SEMI, - STATE(749), 1, + STATE(1267), 1, sym_block, - STATE(3668), 1, + STATE(3716), 1, sym_label, - STATE(2527), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - [78636] = 8, + [79384] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5066), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5637), 1, - anon_sym_SEMI, - STATE(505), 1, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + ACTIONS(5082), 1, + anon_sym_PLUS, + STATE(1513), 1, sym_block, - STATE(3668), 1, + STATE(3664), 1, sym_label, - STATE(2528), 2, + STATE(2563), 2, + sym_line_comment, + sym_block_comment, + [79410] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5697), 1, + anon_sym_RPAREN, + ACTIONS(5699), 1, + anon_sym_COMMA, + STATE(2875), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [78662] = 6, + [79433] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 1, - anon_sym_COLON_COLON, - ACTIONS(5643), 1, - anon_sym_as, - STATE(2529), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(3477), 1, + sym_type_arguments, + ACTIONS(5701), 2, + sym_identifier, + sym_super, + STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(5639), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78684] = 6, + [79454] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, - anon_sym_as, - ACTIONS(5645), 1, - anon_sym_COLON_COLON, - STATE(2530), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5703), 1, + anon_sym_SEMI, + STATE(3674), 1, + sym_where_clause, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(5560), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78706] = 6, + [79477] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, - anon_sym_as, - ACTIONS(5647), 1, - anon_sym_COLON_COLON, - STATE(2531), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5705), 1, + anon_sym_SEMI, + STATE(3689), 1, + sym_where_clause, + STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(5560), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78728] = 8, + [79500] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5649), 1, - anon_sym_SEMI, - STATE(640), 1, + STATE(391), 1, sym_block, - STATE(3668), 1, + STATE(3574), 1, sym_label, - STATE(2532), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [78754] = 8, + [79523] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5066), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5651), 1, - anon_sym_SEMI, - STATE(745), 1, - sym_block, - STATE(3668), 1, - sym_label, - STATE(2533), 2, + STATE(734), 1, + sym_declaration_list, + STATE(3376), 1, + sym_where_clause, + STATE(2569), 2, sym_line_comment, sym_block_comment, - [78780] = 8, + [79546] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_SEMI, - STATE(1284), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2534), 2, + STATE(544), 1, + sym_declaration_list, + STATE(3136), 1, + sym_where_clause, + STATE(2570), 2, sym_line_comment, sym_block_comment, - [78806] = 7, + [79569] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(477), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2535), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(1996), 1, + sym_type_arguments, + STATE(2012), 1, + sym_parameters, + STATE(2571), 2, sym_line_comment, sym_block_comment, - [78829] = 6, + [79592] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(3316), 1, - sym_trait_bounds, - ACTIONS(5506), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2536), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5707), 1, + anon_sym_SEMI, + ACTIONS(5709), 1, + anon_sym_EQ, + ACTIONS(5711), 1, + anon_sym_else, + STATE(2572), 2, sym_line_comment, sym_block_comment, - [78850] = 7, + [79615] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2537), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5713), 1, + sym_identifier, + STATE(3477), 1, + sym_type_arguments, + STATE(2573), 2, sym_line_comment, sym_block_comment, - [78873] = 5, + [79638] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5655), 1, + ACTIONS(5715), 1, aux_sym_token_repetition_pattern_token1, - STATE(2538), 2, + STATE(2574), 2, sym_line_comment, sym_block_comment, - ACTIONS(5657), 3, + ACTIONS(5717), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [78892] = 4, + [79657] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2539), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_declaration_list, + STATE(3157), 1, + sym_where_clause, + STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(955), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78909] = 7, + [79680] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5659), 1, - anon_sym_LPAREN, - ACTIONS(5661), 1, - anon_sym_LBRACK, - ACTIONS(5663), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_token_tree, - STATE(2540), 2, + STATE(2576), 2, sym_line_comment, sym_block_comment, - [78932] = 7, + ACTIONS(969), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [79697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5667), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2541), 2, + ACTIONS(4578), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5719), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [78955] = 5, + [79716] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5669), 1, - anon_sym_COLON_COLON, - STATE(2542), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5625), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_slice_pattern_repeat1, + STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78974] = 7, + [79739] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1393), 1, - anon_sym_RPAREN, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5510), 1, + ACTIONS(5689), 1, + anon_sym_RPAREN, + ACTIONS(5691), 1, anon_sym_COMMA, - STATE(2887), 1, + STATE(3069), 1, aux_sym_parameters_repeat1, - STATE(2543), 2, + STATE(2579), 2, sym_line_comment, sym_block_comment, - [78997] = 7, + [79762] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5360), 1, anon_sym_PLUS, - ACTIONS(5671), 1, - anon_sym_RPAREN, - ACTIONS(5673), 1, - anon_sym_COMMA, - STATE(2806), 1, - aux_sym_tuple_type_repeat1, - STATE(2544), 2, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [79020] = 4, + ACTIONS(5721), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [79781] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2545), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_field_declaration_list, + STATE(3327), 1, + sym_where_clause, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(5675), 4, - anon_sym_SEMI, + [79804] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, anon_sym_SQUOTE, - [79037] = 5, + STATE(393), 1, + sym_block, + STATE(3574), 1, + sym_label, + STATE(2582), 2, + sym_line_comment, + sym_block_comment, + [79827] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_COLON_COLON, - STATE(2546), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5723), 1, + anon_sym_RPAREN, + ACTIONS(5725), 1, + anon_sym_COMMA, + STATE(3126), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79056] = 7, + [79850] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5601), 1, + ACTIONS(4578), 2, anon_sym_COLON, - ACTIONS(5603), 1, anon_sym_PIPE, - ACTIONS(5605), 1, + ACTIONS(5727), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2848), 1, - aux_sym_closure_parameters_repeat1, - STATE(2547), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [79079] = 4, + [79869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2548), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(5679), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5729), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_SQUOTE, - [79096] = 7, + [79888] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(3058), 1, anon_sym_SQUOTE, - ACTIONS(5665), 1, + ACTIONS(5731), 1, sym_identifier, - ACTIONS(5681), 1, + ACTIONS(5733), 1, anon_sym_GT, - STATE(3324), 1, + STATE(3194), 1, sym_lifetime, - STATE(2549), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - [79119] = 5, + [79911] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5683), 1, - anon_sym_COLON_COLON, - STATE(2550), 2, + ACTIONS(5735), 1, + anon_sym_DQUOTE, + STATE(2630), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79138] = 7, + [79932] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4941), 1, - anon_sym_LT, - STATE(2249), 1, - sym_parameters, - STATE(3237), 1, - sym_type_parameters, - STATE(2551), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1450), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2588), 2, sym_line_comment, sym_block_comment, - [79161] = 7, + [79955] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5685), 1, - anon_sym_SEMI, - ACTIONS(5687), 1, - anon_sym_EQ, - ACTIONS(5689), 1, - anon_sym_else, - STATE(2552), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2589), 2, sym_line_comment, sym_block_comment, - [79184] = 6, + [79978] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2553), 2, + ACTIONS(5739), 1, + anon_sym_DQUOTE, + STATE(2610), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [79205] = 5, + [79999] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4544), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5691), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2554), 2, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(2172), 1, + sym_block, + STATE(3709), 1, + sym_label, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [79224] = 7, + [80022] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5693), 1, - anon_sym_SEMI, - STATE(3487), 1, - sym_where_clause, - STATE(2555), 2, + ACTIONS(1301), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(489), 1, + sym_block, + STATE(3717), 1, + sym_label, + STATE(2592), 2, sym_line_comment, sym_block_comment, - [79247] = 7, + [80045] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1171), 1, - sym_declaration_list, - STATE(3299), 1, - sym_where_clause, - STATE(2556), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, + sym_identifier, + ACTIONS(5741), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2593), 2, sym_line_comment, sym_block_comment, - [79270] = 7, + [80068] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5743), 1, + anon_sym_LPAREN, + ACTIONS(5745), 1, + anon_sym_LBRACK, + ACTIONS(5747), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(3396), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2557), 2, + STATE(394), 1, + sym_delim_token_tree, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [79293] = 6, + [80091] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5695), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2558), 2, + ACTIONS(4733), 1, + anon_sym_DOT_DOT, + ACTIONS(5749), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [79314] = 7, + [80112] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5699), 1, - anon_sym_SEMI, - STATE(3522), 1, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(626), 1, + sym_declaration_list, + STATE(3198), 1, sym_where_clause, - STATE(2559), 2, + STATE(2596), 2, sym_line_comment, sym_block_comment, - [79337] = 7, + [80135] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1185), 1, - sym_declaration_list, - STATE(3323), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5751), 1, + anon_sym_SEMI, + STATE(3512), 1, sym_where_clause, - STATE(2560), 2, + STATE(2597), 2, sym_line_comment, sym_block_comment, - [79360] = 7, + [80158] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(3362), 1, anon_sym_LT2, - ACTIONS(5178), 1, + ACTIONS(5302), 1, sym_super, - ACTIONS(5701), 1, + ACTIONS(5753), 1, sym_identifier, - STATE(3563), 1, + STATE(1481), 1, sym_type_arguments, - STATE(2561), 2, - sym_line_comment, - sym_block_comment, - [79383] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(399), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2562), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - [79406] = 7, + [80181] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, + ACTIONS(3362), 1, anon_sym_LT2, - ACTIONS(3554), 1, + ACTIONS(3572), 1, anon_sym_COLON_COLON, - ACTIONS(4881), 1, + ACTIONS(4917), 1, anon_sym_BANG, - STATE(1308), 1, + STATE(1106), 1, sym_type_arguments, - STATE(2563), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [79429] = 5, + [80204] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5703), 1, - anon_sym_DQUOTE, - ACTIONS(5705), 2, - sym_string_content, - sym_escape_sequence, - STATE(2564), 3, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5755), 1, + anon_sym_RPAREN, + ACTIONS(5757), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_tuple_type_repeat1, + STATE(2600), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [79448] = 5, + [80227] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5708), 1, - sym_identifier, - STATE(2565), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1476), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(5710), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [79467] = 7, + [80250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, + ACTIONS(5238), 1, anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - STATE(1353), 1, - sym_parameters, - STATE(1973), 1, - sym_type_arguments, - STATE(2566), 2, - sym_line_comment, - sym_block_comment, - [79490] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5701), 1, - sym_identifier, - STATE(3665), 1, - sym_type_arguments, - STATE(2567), 2, - sym_line_comment, - sym_block_comment, - [79513] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(5240), 1, + anon_sym_LBRACK, + ACTIONS(5244), 1, anon_sym_LBRACE, - STATE(756), 1, - sym_declaration_list, - STATE(3279), 1, - sym_where_clause, - STATE(2568), 2, + STATE(1477), 1, + sym_delim_token_tree, + STATE(2602), 2, sym_line_comment, sym_block_comment, - [79536] = 7, + [80273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5302), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1357), 1, - sym_enum_variant_list, - STATE(3157), 1, - sym_where_clause, - STATE(2569), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1479), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2603), 2, sym_line_comment, sym_block_comment, - [79559] = 7, + [80296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1431), 1, + STATE(1117), 1, sym_block, - STATE(3622), 1, + STATE(3664), 1, sym_label, - STATE(2570), 2, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [79582] = 5, + [80319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5712), 1, - anon_sym_COLON, - STATE(2571), 2, + ACTIONS(5759), 1, + anon_sym_COLON_COLON, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 3, - anon_sym_RPAREN, + ACTIONS(4827), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [79601] = 7, + anon_sym_if, + [80338] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5714), 1, - anon_sym_SEMI, - STATE(3451), 1, - sym_where_clause, - STATE(2572), 2, + ACTIONS(5761), 1, + anon_sym_COLON_COLON, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [79624] = 7, + ACTIONS(4803), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80357] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5246), 1, - anon_sym_LPAREN, - ACTIONS(5248), 1, - anon_sym_LBRACK, - ACTIONS(5252), 1, - anon_sym_LBRACE, - STATE(1432), 1, - sym_delim_token_tree, - STATE(2573), 2, + ACTIONS(5763), 1, + anon_sym_COLON_COLON, + STATE(2607), 2, sym_line_comment, sym_block_comment, - [79647] = 7, + ACTIONS(4803), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80376] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5716), 1, - anon_sym_SEMI, - STATE(3651), 1, - sym_where_clause, - STATE(2574), 2, + ACTIONS(5765), 1, + anon_sym_COLON_COLON, + STATE(2608), 2, sym_line_comment, sym_block_comment, - [79670] = 7, + ACTIONS(4803), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80395] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1235), 1, - sym_declaration_list, - STATE(3374), 1, - sym_where_clause, - STATE(2575), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1488), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2609), 2, sym_line_comment, sym_block_comment, - [79693] = 6, + [80418] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_DOT_DOT, - ACTIONS(5718), 1, - anon_sym_COLON_COLON, - ACTIONS(4707), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2576), 2, + ACTIONS(5767), 1, + anon_sym_DQUOTE, + STATE(2630), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2610), 2, sym_line_comment, sym_block_comment, - [79714] = 7, + [80439] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, + ACTIONS(5238), 1, + anon_sym_LPAREN, + ACTIONS(5240), 1, + anon_sym_LBRACK, + ACTIONS(5244), 1, anon_sym_LBRACE, - STATE(1370), 1, - sym_declaration_list, - STATE(3263), 1, - sym_where_clause, - STATE(2577), 2, + STATE(1491), 1, + sym_delim_token_tree, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [79737] = 7, + [80462] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5306), 1, - anon_sym_LBRACE, - STATE(517), 1, - sym_enum_variant_list, - STATE(3149), 1, - sym_where_clause, - STATE(2578), 2, + ACTIONS(3362), 1, + anon_sym_LT2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5769), 1, + sym_identifier, + STATE(1608), 1, + sym_type_arguments, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [79760] = 7, + [80485] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(5665), 1, + ACTIONS(3362), 1, + anon_sym_LT2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5769), 1, sym_identifier, - ACTIONS(5720), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2579), 2, + STATE(1606), 1, + sym_type_arguments, + STATE(2613), 2, sym_line_comment, sym_block_comment, - [79783] = 7, + [80508] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5722), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2580), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5771), 1, + anon_sym_RPAREN, + ACTIONS(5773), 1, + anon_sym_COMMA, + STATE(2839), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2614), 2, sym_line_comment, sym_block_comment, - [79806] = 7, + [80531] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1434), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2581), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5775), 1, + anon_sym_RBRACK, + ACTIONS(5777), 1, + anon_sym_COMMA, + STATE(2841), 1, + aux_sym_slice_pattern_repeat1, + STATE(2615), 2, sym_line_comment, sym_block_comment, - [79829] = 5, + [80554] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 1, - anon_sym_in, - STATE(2582), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5779), 1, + sym_identifier, + STATE(2093), 1, + sym_type_arguments, + STATE(2616), 2, sym_line_comment, sym_block_comment, - ACTIONS(5726), 3, - sym_self, - sym_super, - sym_crate, - [79848] = 7, + [80577] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5728), 1, - sym_identifier, - ACTIONS(5730), 1, + ACTIONS(5701), 1, sym_super, - STATE(2069), 1, + ACTIONS(5779), 1, + sym_identifier, + STATE(2090), 1, sym_type_arguments, - STATE(2583), 2, + STATE(2617), 2, sym_line_comment, sym_block_comment, - [79871] = 7, + [80600] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5781), 1, anon_sym_RPAREN, - ACTIONS(5734), 1, + ACTIONS(5783), 1, anon_sym_COMMA, - STATE(2852), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2584), 2, + STATE(2848), 1, + aux_sym_tuple_type_repeat1, + STATE(2618), 2, sym_line_comment, sym_block_comment, - [79894] = 7, + [80623] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4953), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym_field_declaration_list, - STATE(3281), 1, - sym_where_clause, - STATE(2585), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5785), 1, + anon_sym_COLON_COLON, + ACTIONS(5787), 1, + anon_sym_for, + STATE(1993), 1, + sym_type_arguments, + STATE(2619), 2, sym_line_comment, sym_block_comment, - [79917] = 7, + [80646] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(5665), 1, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5713), 1, sym_identifier, - ACTIONS(5736), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2586), 2, + STATE(3558), 1, + sym_type_arguments, + STATE(2620), 2, sym_line_comment, sym_block_comment, - [79940] = 7, + [80669] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5738), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2587), 2, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(1138), 1, + sym_parameters, + STATE(1996), 1, + sym_type_arguments, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [79963] = 5, + [80692] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - STATE(2588), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5713), 1, + sym_identifier, + STATE(3477), 1, + sym_type_arguments, + STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(5740), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [79982] = 7, + [80715] = 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(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1323), 1, + STATE(400), 1, sym_block, - STATE(3622), 1, + STATE(3574), 1, sym_label, - STATE(2589), 2, + STATE(2623), 2, sym_line_comment, sym_block_comment, - [80005] = 7, + [80738] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5742), 1, - anon_sym_LPAREN, - ACTIONS(5744), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5389), 1, anon_sym_LBRACE, - STATE(401), 1, - sym_delim_token_tree, - STATE(2590), 2, + STATE(1141), 1, + sym_enum_variant_list, + STATE(3155), 1, + sym_where_clause, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [80028] = 7, + [80761] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(480), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2591), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_RPAREN, + ACTIONS(5791), 1, + anon_sym_COMMA, + STATE(3054), 1, + aux_sym_slice_pattern_repeat1, + STATE(2625), 2, sym_line_comment, sym_block_comment, - [80051] = 4, + [80784] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2592), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5793), 1, + anon_sym_RPAREN, + ACTIONS(5795), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2626), 2, sym_line_comment, sym_block_comment, - ACTIONS(5572), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [80068] = 7, + [80807] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4679), 1, + anon_sym_COLON_COLON, + STATE(1997), 1, + sym_type_arguments, + STATE(2627), 2, + sym_line_comment, + sym_block_comment, + [80830] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(479), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2593), 2, + STATE(1154), 1, + sym_declaration_list, + STATE(3273), 1, + sym_where_clause, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [80091] = 7, + [80853] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(470), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2594), 2, + ACTIONS(4984), 1, + anon_sym_where, + STATE(1160), 1, + sym_field_declaration_list, + STATE(3308), 1, + sym_where_clause, + STATE(2629), 2, sym_line_comment, sym_block_comment, - [80114] = 6, + [80876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5748), 1, + ACTIONS(5797), 1, anon_sym_DQUOTE, - STATE(2611), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(5799), 2, sym_string_content, sym_escape_sequence, - STATE(2595), 2, + STATE(2630), 3, sym_line_comment, sym_block_comment, - [80135] = 7, + aux_sym_string_literal_repeat1, + [80895] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - STATE(1973), 1, - sym_type_arguments, - STATE(1998), 1, - sym_parameters, - STATE(2596), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1438), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [80158] = 7, + [80918] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, anon_sym_LBRACE, - STATE(2939), 1, - sym_block, - STATE(3671), 1, - sym_label, - STATE(2597), 2, + STATE(638), 1, + sym_declaration_list, + STATE(3299), 1, + sym_where_clause, + STATE(2632), 2, sym_line_comment, sym_block_comment, - [80181] = 7, + [80941] = 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(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1698), 1, + STATE(3528), 1, sym_block, - STATE(3673), 1, + STATE(3664), 1, sym_label, - STATE(2598), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [80204] = 5, - ACTIONS(3), 1, + [80964] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2599), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(3558), 1, + sym_type_arguments, + ACTIONS(5802), 2, + sym_identifier, + sym_super, + STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(5752), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80223] = 7, + [80985] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5701), 1, + STATE(3477), 1, + sym_type_arguments, + ACTIONS(5802), 2, sym_identifier, - ACTIONS(5730), 1, sym_super, - STATE(3665), 1, - sym_type_arguments, - STATE(2600), 2, + STATE(2635), 2, sym_line_comment, sym_block_comment, - [80246] = 7, + [81006] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4048), 1, - anon_sym_LT2, - ACTIONS(4230), 1, - anon_sym_COLON_COLON, - ACTIONS(4879), 1, - anon_sym_BANG, - STATE(1603), 1, - sym_type_arguments, - STATE(2601), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5804), 1, + anon_sym_RPAREN, + ACTIONS(5806), 1, + anon_sym_COMMA, + STATE(2887), 1, + aux_sym_slice_pattern_repeat1, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [80269] = 7, + [81029] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5730), 1, - sym_super, - STATE(3563), 1, - sym_type_arguments, - STATE(2602), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_RPAREN, + ACTIONS(5810), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_slice_pattern_repeat1, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [80292] = 6, + [81052] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(3188), 1, - sym_trait_bounds, - ACTIONS(5482), 2, - anon_sym_GT, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_RPAREN, + ACTIONS(5633), 1, anon_sym_COMMA, - STATE(2603), 2, + STATE(2895), 1, + aux_sym_parameters_repeat1, + STATE(2638), 2, sym_line_comment, sym_block_comment, - [80313] = 7, + [81075] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(481), 1, + STATE(3495), 1, sym_block, - STATE(3672), 1, + STATE(3664), 1, sym_label, - STATE(2604), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [80336] = 7, + [81098] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_delim_token_tree, - STATE(2605), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5812), 1, + anon_sym_SEMI, + ACTIONS(5814), 1, + anon_sym_EQ, + ACTIONS(5816), 1, + anon_sym_else, + STATE(2640), 2, + sym_line_comment, + sym_block_comment, + [81121] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5818), 1, + anon_sym_SEMI, + STATE(3437), 1, + sym_where_clause, + STATE(2641), 2, sym_line_comment, sym_block_comment, - [80359] = 7, + [81144] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(483), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2606), 2, + STATE(1202), 1, + sym_declaration_list, + STATE(3216), 1, + sym_where_clause, + STATE(2642), 2, + sym_line_comment, + sym_block_comment, + [81167] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5820), 1, + anon_sym_SEMI, + STATE(3460), 1, + sym_where_clause, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [80382] = 7, + [81190] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(460), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2607), 2, + STATE(1213), 1, + sym_declaration_list, + STATE(3233), 1, + sym_where_clause, + STATE(2644), 2, sym_line_comment, sym_block_comment, - [80405] = 7, + [81213] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(2250), 1, + sym_parameters, + STATE(3133), 1, + sym_type_parameters, + STATE(2645), 2, + sym_line_comment, + sym_block_comment, + [81236] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5389), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1457), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2608), 2, + STATE(1218), 1, + sym_enum_variant_list, + STATE(3240), 1, + sym_where_clause, + STATE(2646), 2, sym_line_comment, sym_block_comment, - [80428] = 7, + [81259] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(488), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2609), 2, + ACTIONS(4984), 1, + anon_sym_where, + STATE(1224), 1, + sym_field_declaration_list, + STATE(3253), 1, + sym_where_clause, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [80451] = 7, + [81282] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1433), 1, + STATE(1490), 1, sym_block, - STATE(3622), 1, + STATE(3664), 1, sym_label, - STATE(2610), 2, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [80474] = 6, + [81305] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5760), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2611), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5822), 1, + anon_sym_EQ, + ACTIONS(5824), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2649), 2, sym_line_comment, sym_block_comment, - [80495] = 7, + [81326] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5375), 1, anon_sym_LBRACE, - STATE(1989), 1, - sym_delim_token_tree, - STATE(2612), 2, + STATE(645), 1, + sym_enum_variant_list, + STATE(3393), 1, + sym_where_clause, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [80518] = 7, + [81349] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4048), 1, - anon_sym_LT2, - ACTIONS(5762), 1, - sym_identifier, - ACTIONS(5764), 1, - sym_super, - STATE(1582), 1, - sym_type_arguments, - STATE(2613), 2, + ACTIONS(1399), 1, + anon_sym_RPAREN, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5487), 1, + anon_sym_COMMA, + STATE(2924), 1, + aux_sym_parameters_repeat1, + STATE(2651), 2, sym_line_comment, sym_block_comment, - [80541] = 7, + [81372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4048), 1, - anon_sym_LT2, - ACTIONS(5762), 1, - sym_identifier, - ACTIONS(5764), 1, - sym_super, - STATE(1585), 1, - sym_type_arguments, - STATE(2614), 2, + ACTIONS(5826), 1, + anon_sym_COLON, + STATE(2652), 2, sym_line_comment, sym_block_comment, - [80564] = 5, + ACTIONS(4963), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81391] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5766), 1, - anon_sym_COLON, - STATE(2615), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5828), 1, + anon_sym_SEMI, + ACTIONS(5830), 1, + anon_sym_EQ, + ACTIONS(5832), 1, + anon_sym_else, + STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80583] = 7, + [81414] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - sym_identifier, - ACTIONS(5770), 1, - anon_sym_LT2, - ACTIONS(5772), 1, - sym_super, - STATE(2435), 1, - sym_type_arguments, - STATE(2616), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5834), 1, + anon_sym_SEMI, + STATE(3534), 1, + sym_where_clause, + STATE(2654), 2, sym_line_comment, sym_block_comment, - [80606] = 7, + [81437] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - sym_identifier, - ACTIONS(5770), 1, - anon_sym_LT2, - ACTIONS(5772), 1, - sym_super, - STATE(2437), 1, - sym_type_arguments, - STATE(2617), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5836), 1, + anon_sym_SEMI, + STATE(3539), 1, + sym_where_clause, + STATE(2655), 2, sym_line_comment, sym_block_comment, - [80629] = 7, + [81460] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5774), 1, - anon_sym_RPAREN, - ACTIONS(5776), 1, - anon_sym_COMMA, - STATE(2952), 1, - aux_sym_tuple_type_repeat1, - STATE(2618), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1262), 1, + sym_declaration_list, + STATE(3356), 1, + sym_where_clause, + STATE(2656), 2, sym_line_comment, sym_block_comment, - [80652] = 6, + [81483] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5778), 1, - anon_sym_EQ, - ACTIONS(5780), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2619), 2, + ACTIONS(5838), 1, + anon_sym_SEMI, + STATE(3569), 1, + sym_where_clause, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [80673] = 7, + [81506] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5728), 1, - sym_identifier, - STATE(3563), 1, - sym_type_arguments, - STATE(2620), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1276), 1, + sym_declaration_list, + STATE(3362), 1, + sym_where_clause, + STATE(2658), 2, sym_line_comment, sym_block_comment, - [80696] = 5, + [81529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5782), 1, + ACTIONS(5759), 1, anon_sym_COLON_COLON, - STATE(2621), 2, + STATE(2659), 2, sym_line_comment, sym_block_comment, - ACTIONS(4739), 3, + ACTIONS(4775), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [80715] = 7, + [81548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, - anon_sym_LPAREN, - ACTIONS(4540), 1, - anon_sym_LT2, - STATE(1616), 1, - sym_parameters, - STATE(1973), 1, - sym_type_arguments, - STATE(2622), 2, + ACTIONS(5761), 1, + anon_sym_COLON_COLON, + STATE(2660), 2, sym_line_comment, sym_block_comment, - [80738] = 7, + ACTIONS(4793), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5728), 1, - sym_identifier, - STATE(3665), 1, - sym_type_arguments, - STATE(2623), 2, + ACTIONS(5763), 1, + anon_sym_COLON_COLON, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [80761] = 7, + ACTIONS(4793), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(1973), 1, - sym_type_arguments, - STATE(2545), 1, - sym_trait_bounds, - STATE(2624), 2, + ACTIONS(5765), 1, + anon_sym_COLON_COLON, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [80784] = 6, + ACTIONS(4793), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81605] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5784), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2625), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5375), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_enum_variant_list, + STATE(3314), 1, + sym_where_clause, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [80805] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81628] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(396), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2626), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(3558), 1, + sym_type_arguments, + ACTIONS(5302), 2, + sym_identifier, + sym_super, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [80828] = 7, + [81649] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1413), 1, - anon_sym_RPAREN, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5480), 1, - anon_sym_COMMA, - STATE(2882), 1, - aux_sym_parameters_repeat1, - STATE(2627), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(3477), 1, + sym_type_arguments, + ACTIONS(5302), 2, + sym_identifier, + sym_super, + STATE(2665), 2, sym_line_comment, sym_block_comment, - [80851] = 7, + [81670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5786), 1, - anon_sym_RBRACK, - ACTIONS(5788), 1, - anon_sym_COMMA, - STATE(2858), 1, - aux_sym_slice_pattern_repeat1, - STATE(2628), 2, + ACTIONS(5759), 1, + anon_sym_COLON_COLON, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [80874] = 5, + ACTIONS(4781), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5790), 1, - anon_sym_COMMA, - ACTIONS(4226), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2629), 3, + ACTIONS(5761), 1, + anon_sym_COLON_COLON, + STATE(2667), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [80893] = 4, + ACTIONS(4787), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81708] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2630), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5840), 1, + anon_sym_SEMI, + STATE(3676), 1, + sym_where_clause, + STATE(2668), 2, sym_line_comment, sym_block_comment, - ACTIONS(5793), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80910] = 7, + [81731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5585), 1, - anon_sym_RPAREN, - ACTIONS(5587), 1, - anon_sym_COMMA, - STATE(2962), 1, - aux_sym_parameters_repeat1, - STATE(2631), 2, + ACTIONS(5763), 1, + anon_sym_COLON_COLON, + STATE(2669), 2, sym_line_comment, sym_block_comment, - [80933] = 7, + ACTIONS(4787), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5453), 1, - anon_sym_RPAREN, - ACTIONS(5455), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_parameters_repeat1, - STATE(2632), 2, + ACTIONS(5765), 1, + anon_sym_COLON_COLON, + STATE(2670), 2, sym_line_comment, sym_block_comment, - [80956] = 7, + ACTIONS(4787), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81769] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4791), 1, - anon_sym_for, - ACTIONS(5795), 1, - anon_sym_COLON_COLON, - STATE(1974), 1, - sym_type_arguments, - STATE(2633), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5842), 1, + anon_sym_SEMI, + STATE(3719), 1, + sym_where_clause, + STATE(2671), 2, sym_line_comment, sym_block_comment, - [80979] = 7, + [81792] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5797), 1, + ACTIONS(5844), 1, anon_sym_SEMI, - ACTIONS(5799), 1, - anon_sym_EQ, - ACTIONS(5801), 1, - anon_sym_else, - STATE(2634), 2, + STATE(3721), 1, + sym_where_clause, + STATE(2672), 2, sym_line_comment, sym_block_comment, - [81002] = 7, + [81815] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(489), 1, - sym_block, - STATE(3672), 1, - sym_label, - STATE(2635), 2, + STATE(1329), 1, + sym_declaration_list, + STATE(3420), 1, + sym_where_clause, + STATE(2673), 2, sym_line_comment, sym_block_comment, - [81025] = 6, + [81838] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - STATE(3563), 1, - sym_type_arguments, - ACTIONS(5772), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_field_declaration_list, + STATE(3190), 1, + sym_where_clause, + STATE(2674), 2, + sym_line_comment, + sym_block_comment, + [81861] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, sym_identifier, - sym_super, - STATE(2636), 2, + ACTIONS(5846), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2675), 2, sym_line_comment, sym_block_comment, - [81046] = 7, + [81884] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3058), 1, anon_sym_SQUOTE, - STATE(3586), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2637), 2, + ACTIONS(5731), 1, + sym_identifier, + ACTIONS(5848), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2676), 2, sym_line_comment, sym_block_comment, - [81069] = 7, + [81907] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(3622), 1, - sym_label, - STATE(3674), 1, - sym_block, - STATE(2638), 2, + STATE(763), 1, + sym_declaration_list, + STATE(3364), 1, + sym_where_clause, + STATE(2677), 2, sym_line_comment, sym_block_comment, - [81092] = 6, + [81930] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - STATE(3665), 1, - sym_type_arguments, - ACTIONS(5772), 2, - sym_identifier, - sym_super, - STATE(2639), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5850), 1, + anon_sym_SEMI, + STATE(3513), 1, + sym_where_clause, + STATE(2678), 2, sym_line_comment, sym_block_comment, - [81113] = 7, + [81953] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1391), 1, - anon_sym_RPAREN, - ACTIONS(5060), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5593), 1, - anon_sym_COMMA, - STATE(2968), 1, - aux_sym_parameters_repeat1, - STATE(2640), 2, + ACTIONS(5852), 1, + anon_sym_SEMI, + STATE(3675), 1, + sym_where_clause, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [81136] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81976] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3058), 1, anon_sym_SQUOTE, - STATE(390), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2641), 2, + ACTIONS(5731), 1, + sym_identifier, + ACTIONS(5854), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2680), 2, sym_line_comment, sym_block_comment, - [81159] = 4, + [81999] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2642), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, + sym_identifier, + ACTIONS(5856), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2681), 2, sym_line_comment, sym_block_comment, - ACTIONS(4304), 4, + [82022] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [81176] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3622), 1, - sym_label, - STATE(3676), 1, + STATE(319), 1, sym_block, - STATE(2643), 2, + STATE(3574), 1, + sym_label, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [81199] = 5, + [82045] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5669), 1, - anon_sym_COLON_COLON, - STATE(2644), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(2293), 1, + sym_parameters, + STATE(3181), 1, + sym_type_parameters, + STATE(2683), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81218] = 7, + [82068] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3614), 1, + STATE(486), 1, sym_block, - STATE(3622), 1, + STATE(3717), 1, sym_label, - STATE(2645), 2, + STATE(2684), 2, sym_line_comment, sym_block_comment, - [81241] = 7, + [82091] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(1301), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5803), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2646), 2, + STATE(474), 1, + sym_block, + STATE(3717), 1, + sym_label, + STATE(2685), 2, sym_line_comment, sym_block_comment, - [81264] = 7, + [82114] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5805), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2647), 2, + ACTIONS(5858), 1, + anon_sym_DQUOTE, + STATE(2698), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [81287] = 7, + [82135] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5807), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2648), 2, + STATE(1452), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [81310] = 7, + [82158] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5809), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2649), 2, + ACTIONS(5080), 1, + anon_sym_LBRACE, + STATE(2859), 1, + sym_block, + STATE(3716), 1, + sym_label, + STATE(2688), 2, sym_line_comment, sym_block_comment, - [81333] = 7, + [82181] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1696), 1, + STATE(1749), 1, sym_block, - STATE(3673), 1, + STATE(3718), 1, sym_label, - STATE(2650), 2, + STATE(2689), 2, sym_line_comment, sym_block_comment, - [81356] = 7, + [82204] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5743), 1, + anon_sym_LPAREN, + ACTIONS(5745), 1, + anon_sym_LBRACK, + ACTIONS(5747), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - sym_block, - STATE(3673), 1, - sym_label, - STATE(2651), 2, + STATE(401), 1, + sym_delim_token_tree, + STATE(2690), 2, sym_line_comment, sym_block_comment, - [81379] = 6, + [82227] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5811), 1, - anon_sym_DQUOTE, - STATE(2660), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2652), 2, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(4210), 1, + anon_sym_COLON_COLON, + ACTIONS(4967), 1, + anon_sym_BANG, + STATE(1631), 1, + sym_type_arguments, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [81400] = 7, + [82250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(472), 1, + STATE(478), 1, sym_block, - STATE(3672), 1, + STATE(3717), 1, sym_label, - STATE(2653), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - [81423] = 7, + [82273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5246), 1, + ACTIONS(5860), 1, anon_sym_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5862), 1, anon_sym_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5864), 1, anon_sym_LBRACE, - STATE(1458), 1, + STATE(2007), 1, sym_delim_token_tree, - STATE(2654), 2, + STATE(2693), 2, sym_line_comment, sym_block_comment, - [81446] = 7, + [82296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1709), 1, + STATE(479), 1, sym_block, - STATE(3673), 1, + STATE(3717), 1, sym_label, - STATE(2655), 2, - sym_line_comment, - sym_block_comment, - [81469] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LPAREN, - ACTIONS(5815), 1, - anon_sym_LBRACK, - ACTIONS(5817), 1, - anon_sym_LBRACE, - STATE(1036), 1, - sym_delim_token_tree, - STATE(2656), 2, + STATE(2694), 2, sym_line_comment, sym_block_comment, - [81492] = 7, + [82319] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1712), 1, + STATE(460), 1, sym_block, - STATE(3673), 1, + STATE(3717), 1, sym_label, - STATE(2657), 2, + STATE(2695), 2, sym_line_comment, sym_block_comment, - [81515] = 7, + [82342] = 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(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1587), 1, + STATE(3630), 1, sym_block, - STATE(3673), 1, + STATE(3664), 1, sym_label, - STATE(2658), 2, + STATE(2696), 2, sym_line_comment, sym_block_comment, - [81538] = 7, + [82365] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1716), 1, + STATE(484), 1, sym_block, - STATE(3673), 1, + STATE(3717), 1, sym_label, - STATE(2659), 2, + STATE(2697), 2, sym_line_comment, sym_block_comment, - [81561] = 6, + [82388] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5819), 1, + ACTIONS(5866), 1, anon_sym_DQUOTE, - STATE(2564), 1, + STATE(2630), 1, aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2660), 2, + STATE(2698), 2, sym_line_comment, sym_block_comment, - [81582] = 7, + [82409] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, + ACTIONS(5860), 1, anon_sym_LPAREN, - ACTIONS(5815), 1, + ACTIONS(5862), 1, anon_sym_LBRACK, - ACTIONS(5817), 1, + ACTIONS(5864), 1, anon_sym_LBRACE, - STATE(1038), 1, + STATE(2000), 1, sym_delim_token_tree, - STATE(2661), 2, + STATE(2699), 2, + sym_line_comment, + sym_block_comment, + [82432] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_identifier, + ACTIONS(5870), 1, + sym_super, + STATE(1616), 1, + sym_type_arguments, + STATE(2700), 2, sym_line_comment, sym_block_comment, - [81605] = 7, + [82455] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4072), 1, anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5821), 1, + ACTIONS(5868), 1, sym_identifier, - STATE(2069), 1, + ACTIONS(5870), 1, + sym_super, + STATE(1620), 1, sym_type_arguments, - STATE(2662), 2, + STATE(2701), 2, sym_line_comment, sym_block_comment, - [81628] = 7, + [82478] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5730), 1, + ACTIONS(5802), 1, sym_super, - ACTIONS(5821), 1, + ACTIONS(5872), 1, sym_identifier, - STATE(2070), 1, + ACTIONS(5874), 1, + anon_sym_LT2, + STATE(2513), 1, sym_type_arguments, - STATE(2663), 2, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [81651] = 7, + [82501] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5730), 1, + ACTIONS(5802), 1, sym_super, - ACTIONS(5823), 1, + ACTIONS(5872), 1, sym_identifier, - STATE(3563), 1, + ACTIONS(5874), 1, + anon_sym_LT2, + STATE(2473), 1, sym_type_arguments, - STATE(2664), 2, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [81674] = 7, + [82524] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5823), 1, - sym_identifier, - STATE(3665), 1, - sym_type_arguments, - STATE(2665), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5876), 1, + anon_sym_RPAREN, + ACTIONS(5878), 1, + anon_sym_COMMA, + STATE(2987), 1, + aux_sym_tuple_type_repeat1, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [81697] = 7, + [82547] = 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(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1737), 1, - sym_block, - STATE(3673), 1, + STATE(3664), 1, sym_label, - STATE(2666), 2, + STATE(3702), 1, + sym_block, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [81720] = 7, + [82570] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5728), 1, - sym_identifier, - ACTIONS(5730), 1, + ACTIONS(5302), 1, sym_super, - STATE(2070), 1, + ACTIONS(5880), 1, + sym_identifier, + STATE(3558), 1, sym_type_arguments, - STATE(2667), 2, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [81743] = 6, + [82593] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5825), 1, - anon_sym_DQUOTE, - STATE(2558), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2668), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(2266), 1, + sym_parameters, + STATE(3375), 1, + sym_type_parameters, + STATE(2707), 2, sym_line_comment, sym_block_comment, - [81764] = 7, + [82616] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5827), 1, - anon_sym_RPAREN, - ACTIONS(5829), 1, - anon_sym_COMMA, - STATE(2847), 1, - aux_sym_slice_pattern_repeat1, - STATE(2669), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + STATE(3558), 1, + sym_type_arguments, + ACTIONS(5701), 2, + sym_identifier, + sym_super, + STATE(2708), 2, sym_line_comment, sym_block_comment, - [81787] = 7, + [82637] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_RPAREN, - ACTIONS(5833), 1, - anon_sym_COMMA, - STATE(2850), 1, - aux_sym_slice_pattern_repeat1, - STATE(2670), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(3477), 1, + sym_type_arguments, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [81810] = 7, + [82660] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(2142), 1, + STATE(408), 1, sym_block, - STATE(3664), 1, + STATE(3574), 1, sym_label, - STATE(2671), 2, - sym_line_comment, - sym_block_comment, - [81833] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_COLON_COLON, - STATE(2672), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81852] = 7, + [82683] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1744), 1, + STATE(490), 1, sym_block, - STATE(3673), 1, + STATE(3717), 1, sym_label, - STATE(2673), 2, + STATE(2711), 2, sym_line_comment, sym_block_comment, - [81875] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, + [82706] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(393), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2674), 2, + ACTIONS(5882), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2712), 2, sym_line_comment, sym_block_comment, - [81898] = 5, + ACTIONS(5884), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82725] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5683), 1, - anon_sym_COLON_COLON, - STATE(2675), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81917] = 7, + ACTIONS(973), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [82742] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5795), 1, - anon_sym_COLON_COLON, - ACTIONS(5835), 1, - anon_sym_for, - STATE(1974), 1, - sym_type_arguments, - STATE(2676), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5555), 1, + anon_sym_RPAREN, + ACTIONS(5557), 1, + anon_sym_COMMA, + STATE(2994), 1, + aux_sym_parameters_repeat1, + STATE(2714), 2, sym_line_comment, sym_block_comment, - [81940] = 6, + [82765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - anon_sym_DQUOTE, - STATE(2681), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2677), 2, + ACTIONS(5886), 1, + sym_identifier, + STATE(2715), 2, sym_line_comment, sym_block_comment, - [81961] = 7, + ACTIONS(5888), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [82784] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1301), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1749), 1, + STATE(491), 1, sym_block, - STATE(3673), 1, + STATE(3717), 1, sym_label, - STATE(2678), 2, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [81984] = 7, + [82807] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5839), 1, - anon_sym_RPAREN, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(3062), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2679), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, + sym_identifier, + ACTIONS(5890), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [82007] = 7, + [82830] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, + ACTIONS(5892), 1, anon_sym_LPAREN, - ACTIONS(5845), 1, + ACTIONS(5894), 1, anon_sym_LBRACK, - ACTIONS(5847), 1, + ACTIONS(5896), 1, anon_sym_LBRACE, - STATE(1753), 1, - sym_delim_token_tree, - STATE(2680), 2, + STATE(2780), 1, + sym_token_tree, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [82030] = 6, + [82853] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5849), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2681), 2, + ACTIONS(1405), 1, + anon_sym_RPAREN, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5667), 1, + anon_sym_COMMA, + STATE(2998), 1, + aux_sym_parameters_repeat1, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [82051] = 7, + [82876] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, - anon_sym_LPAREN, - ACTIONS(5845), 1, - anon_sym_LBRACK, - ACTIONS(5847), 1, - anon_sym_LBRACE, - STATE(1757), 1, - sym_delim_token_tree, - STATE(2682), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, + sym_identifier, + ACTIONS(5898), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2720), 2, sym_line_comment, sym_block_comment, - [82074] = 7, + [82899] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5851), 1, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, sym_identifier, - STATE(2069), 1, - sym_type_arguments, - STATE(2683), 2, + ACTIONS(5900), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [82097] = 7, + [82922] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5851), 1, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, sym_identifier, - STATE(2070), 1, - sym_type_arguments, - STATE(2684), 2, + ACTIONS(5902), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2722), 2, sym_line_comment, sym_block_comment, - [82120] = 7, + [82945] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5823), 1, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, sym_identifier, - STATE(3563), 1, - sym_type_arguments, - STATE(2685), 2, + ACTIONS(5904), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2723), 2, sym_line_comment, sym_block_comment, - [82143] = 7, + [82968] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5823), 1, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, sym_identifier, - STATE(3665), 1, - sym_type_arguments, - STATE(2686), 2, + ACTIONS(5906), 1, + anon_sym_GT, + STATE(3194), 1, + sym_lifetime, + STATE(2724), 2, sym_line_comment, sym_block_comment, - [82166] = 7, + [82991] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5853), 1, - anon_sym_RPAREN, - ACTIONS(5855), 1, - anon_sym_COMMA, - STATE(2984), 1, - aux_sym_tuple_type_repeat1, - STATE(2687), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1748), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [82189] = 7, + [83014] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5486), 1, - anon_sym_RPAREN, - ACTIONS(5488), 1, - anon_sym_COMMA, - STATE(2854), 1, - aux_sym_parameters_repeat1, - STATE(2688), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1750), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [82212] = 6, + [83037] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5857), 1, + ACTIONS(5908), 1, anon_sym_DQUOTE, - STATE(2691), 1, + STATE(2734), 1, aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2689), 2, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [82233] = 7, + [83058] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5859), 1, - anon_sym_RPAREN, - ACTIONS(5861), 1, - anon_sym_COMMA, - STATE(2987), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2690), 2, + ACTIONS(1301), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(483), 1, + sym_block, + STATE(3717), 1, + sym_label, + STATE(2728), 2, sym_line_comment, sym_block_comment, - [82256] = 6, + [83081] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5863), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2691), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1755), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [82277] = 7, + [83104] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5865), 1, - sym_identifier, - STATE(3563), 1, - sym_type_arguments, - STATE(2692), 2, + ACTIONS(5910), 1, + anon_sym_LPAREN, + ACTIONS(5912), 1, + anon_sym_LBRACK, + ACTIONS(5914), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_delim_token_tree, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [82300] = 7, + [83127] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5865), 1, - sym_identifier, - STATE(3665), 1, - sym_type_arguments, - STATE(2693), 2, - sym_line_comment, - sym_block_comment, - [82323] = 7, - ACTIONS(19), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(268), 1, + STATE(1758), 1, sym_block, - STATE(3541), 1, + STATE(3718), 1, sym_label, - STATE(2694), 2, - sym_line_comment, - sym_block_comment, - [82346] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5867), 1, - anon_sym_COMMA, - ACTIONS(5740), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2695), 3, + STATE(2731), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [82365] = 7, + [83150] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, - anon_sym_LT2, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5870), 1, - sym_identifier, - STATE(1591), 1, - sym_type_arguments, - STATE(2696), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1598), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2732), 2, sym_line_comment, sym_block_comment, - [82388] = 7, + [83173] = 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(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3552), 1, + STATE(1762), 1, sym_block, - STATE(3622), 1, + STATE(3718), 1, sym_label, - STATE(2697), 2, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [82411] = 7, + [83196] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5872), 1, - anon_sym_SEMI, - ACTIONS(5874), 1, - anon_sym_EQ, - ACTIONS(5876), 1, - anon_sym_else, - STATE(2698), 2, + ACTIONS(5916), 1, + anon_sym_DQUOTE, + STATE(2630), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2734), 2, sym_line_comment, sym_block_comment, - [82434] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83217] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(411), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2699), 2, + ACTIONS(5910), 1, + anon_sym_LPAREN, + ACTIONS(5912), 1, + anon_sym_LBRACK, + ACTIONS(5914), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_delim_token_tree, + STATE(2735), 2, sym_line_comment, sym_block_comment, - [82457] = 5, + [83240] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5782), 1, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4813), 1, + anon_sym_for, + ACTIONS(5785), 1, anon_sym_COLON_COLON, - STATE(2700), 2, + STATE(1993), 1, + sym_type_arguments, + STATE(2736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4747), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82476] = 7, + [83263] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4941), 1, - anon_sym_LT, - STATE(2260), 1, - sym_parameters, - STATE(3341), 1, - sym_type_parameters, - STATE(2701), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5918), 1, + sym_identifier, + STATE(2093), 1, + sym_type_arguments, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [82499] = 7, + [83286] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5178), 1, + ACTIONS(5701), 1, sym_super, - ACTIONS(5865), 1, + ACTIONS(5918), 1, sym_identifier, - STATE(3563), 1, + STATE(2090), 1, sym_type_arguments, - STATE(2702), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - [82522] = 7, + [83309] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5178), 1, + ACTIONS(5701), 1, sym_super, - ACTIONS(5865), 1, + ACTIONS(5920), 1, sym_identifier, - STATE(3665), 1, + STATE(3558), 1, sym_type_arguments, - STATE(2703), 2, + STATE(2739), 2, sym_line_comment, sym_block_comment, - [82545] = 5, + [83332] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5669), 1, - anon_sym_COLON_COLON, - STATE(2704), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5920), 1, + sym_identifier, + STATE(3477), 1, + sym_type_arguments, + STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82564] = 7, + [83355] = 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(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3622), 1, - sym_label, - STATE(3642), 1, + STATE(1780), 1, sym_block, - STATE(2705), 2, - sym_line_comment, - sym_block_comment, - [82587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_COLON_COLON, - STATE(2706), 2, + STATE(3718), 1, + sym_label, + STATE(2741), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82606] = 7, + [83378] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4566), 1, - anon_sym_BANG, - ACTIONS(4647), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - STATE(2707), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(3374), 1, + sym_trait_bounds, + ACTIONS(5538), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2742), 2, sym_line_comment, sym_block_comment, - [82629] = 6, + [83399] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5238), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2708), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(1786), 1, + sym_block, + STATE(3718), 1, + sym_label, + STATE(2743), 2, sym_line_comment, sym_block_comment, - [82650] = 5, + [83422] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5308), 1, - anon_sym_PLUS, - STATE(2709), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5878), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [82669] = 7, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(3554), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2744), 2, + sym_line_comment, + sym_block_comment, + [83445] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4941), 1, - anon_sym_LT, - STATE(2266), 1, - sym_parameters, - STATE(3277), 1, - sym_type_parameters, - STATE(2710), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5922), 1, + anon_sym_SEMI, + STATE(3548), 1, + sym_where_clause, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [82692] = 5, + [83468] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5880), 1, - anon_sym_in, - STATE(2711), 2, + ACTIONS(5924), 1, + anon_sym_DQUOTE, + STATE(2749), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(5882), 3, - sym_self, - sym_super, - sym_crate, - [82711] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83489] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(400), 1, + STATE(1791), 1, sym_block, - STATE(3541), 1, + STATE(3718), 1, sym_label, - STATE(2712), 2, + STATE(2747), 2, sym_line_comment, sym_block_comment, - [82734] = 7, + [83512] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5884), 1, + ACTIONS(5926), 1, + anon_sym_LPAREN, + ACTIONS(5928), 1, + anon_sym_LBRACK, + ACTIONS(5930), 1, anon_sym_LBRACE, - ACTIONS(5886), 1, - anon_sym_for, - ACTIONS(5888), 1, - anon_sym_loop, - ACTIONS(5890), 1, - anon_sym_while, - STATE(2713), 2, + STATE(1796), 1, + sym_delim_token_tree, + STATE(2748), 2, sym_line_comment, sym_block_comment, - [82757] = 5, + [83535] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5683), 1, - anon_sym_COLON_COLON, - STATE(2714), 2, + ACTIONS(5932), 1, + anon_sym_DQUOTE, + STATE(2630), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2749), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82776] = 7, + [83556] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5742), 1, + ACTIONS(5926), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5928), 1, anon_sym_LBRACK, - ACTIONS(5746), 1, + ACTIONS(5930), 1, anon_sym_LBRACE, - STATE(413), 1, + STATE(1799), 1, sym_delim_token_tree, - STATE(2715), 2, + STATE(2750), 2, + sym_line_comment, + sym_block_comment, + [83579] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(3527), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2751), 2, sym_line_comment, sym_block_comment, - [82799] = 6, + [83602] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - STATE(3563), 1, - sym_type_arguments, - ACTIONS(5178), 2, - sym_identifier, + ACTIONS(5701), 1, sym_super, - STATE(2716), 2, + ACTIONS(5934), 1, + sym_identifier, + STATE(2093), 1, + sym_type_arguments, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [82820] = 7, + [83625] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4941), 1, - anon_sym_LT, - STATE(2253), 1, - sym_parameters, - STATE(3254), 1, - sym_type_parameters, - STATE(2717), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5934), 1, + sym_identifier, + STATE(2090), 1, + sym_type_arguments, + STATE(2753), 2, sym_line_comment, sym_block_comment, - [82843] = 7, + [83648] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5892), 1, - anon_sym_SEMI, - ACTIONS(5894), 1, - anon_sym_EQ, - ACTIONS(5896), 1, - anon_sym_else, - STATE(2718), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5920), 1, + sym_identifier, + STATE(3558), 1, + sym_type_arguments, + STATE(2754), 2, sym_line_comment, sym_block_comment, - [82866] = 7, + [83671] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5178), 1, + ACTIONS(5302), 1, sym_super, - ACTIONS(5898), 1, + ACTIONS(5920), 1, sym_identifier, - STATE(1442), 1, + STATE(3477), 1, sym_type_arguments, - STATE(2719), 2, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [82889] = 7, + [83694] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5900), 1, + ACTIONS(5936), 1, anon_sym_SEMI, - STATE(3488), 1, + STATE(3553), 1, sym_where_clause, - STATE(2720), 2, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [82912] = 7, + [83717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5902), 1, - anon_sym_RPAREN, - ACTIONS(5904), 1, - anon_sym_COMMA, - STATE(2904), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2721), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + STATE(2757), 2, sym_line_comment, sym_block_comment, - [82935] = 7, + ACTIONS(5938), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [83736] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(3531), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2722), 2, + ACTIONS(5940), 1, + anon_sym_DQUOTE, + STATE(2760), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [82958] = 7, + [83757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_declaration_list, - STATE(3133), 1, - sym_where_clause, - STATE(2723), 2, + ACTIONS(5942), 1, + anon_sym_COMMA, + ACTIONS(5938), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2759), 3, sym_line_comment, sym_block_comment, - [82981] = 7, + aux_sym_slice_pattern_repeat1, + [83776] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4941), 1, - anon_sym_LT, - STATE(2230), 1, - sym_parameters, - STATE(3301), 1, - sym_type_parameters, - STATE(2724), 2, + ACTIONS(5945), 1, + anon_sym_DQUOTE, + STATE(2630), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [83004] = 6, + [83797] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - STATE(3665), 1, - sym_type_arguments, - ACTIONS(5178), 2, - sym_identifier, + ACTIONS(5701), 1, sym_super, - STATE(2725), 2, + ACTIONS(5947), 1, + sym_identifier, + STATE(3558), 1, + sym_type_arguments, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [83025] = 6, + [83820] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - STATE(3563), 1, - sym_type_arguments, - ACTIONS(5730), 2, - sym_identifier, + ACTIONS(5701), 1, sym_super, - STATE(2726), 2, + ACTIONS(5947), 1, + sym_identifier, + STATE(3477), 1, + sym_type_arguments, + STATE(2762), 2, + sym_line_comment, + sym_block_comment, + [83843] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [83046] = 6, + ACTIONS(3302), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [83860] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(3362), 1, anon_sym_LT2, - STATE(3665), 1, - sym_type_arguments, - ACTIONS(5730), 2, - sym_identifier, + ACTIONS(5302), 1, sym_super, - STATE(2727), 2, + ACTIONS(5753), 1, + sym_identifier, + STATE(1417), 1, + sym_type_arguments, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [83067] = 4, + [83883] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2728), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5949), 1, + anon_sym_RBRACK, + ACTIONS(5951), 1, + anon_sym_COMMA, + STATE(3105), 1, + aux_sym_slice_pattern_repeat1, + STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 4, - anon_sym_COLON, + [83906] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5082), 1, anon_sym_PLUS, - anon_sym_GT, + STATE(2766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5953), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - [83084] = 7, + [83925] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5306), 1, - anon_sym_LBRACE, - STATE(665), 1, - sym_enum_variant_list, - STATE(3162), 1, - sym_where_clause, - STATE(2729), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(2093), 1, + sym_type_arguments, + STATE(2767), 2, sym_line_comment, sym_block_comment, - [83107] = 7, + [83948] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5178), 1, + ACTIONS(5302), 1, sym_super, - ACTIONS(5898), 1, + ACTIONS(5947), 1, sym_identifier, - STATE(1463), 1, + STATE(3558), 1, sym_type_arguments, - STATE(2730), 2, + STATE(2768), 2, sym_line_comment, sym_block_comment, - [83130] = 7, + [83971] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1110), 1, - sym_declaration_list, - STATE(3172), 1, - sym_where_clause, - STATE(2731), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5947), 1, + sym_identifier, + STATE(3477), 1, + sym_type_arguments, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [83153] = 7, + [83994] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5906), 1, - anon_sym_SEMI, - STATE(3418), 1, - sym_where_clause, - STATE(2732), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(397), 1, + sym_block, + STATE(3574), 1, + sym_label, + STATE(2770), 2, sym_line_comment, sym_block_comment, - [83176] = 7, + [84017] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(1383), 1, + STATE(1447), 1, sym_block, - STATE(3622), 1, + STATE(3664), 1, sym_label, - STATE(2733), 2, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [83199] = 7, + [84040] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5526), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_slice_pattern_repeat1, - STATE(2734), 2, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5234), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2772), 2, sym_line_comment, sym_block_comment, - [83222] = 5, - ACTIONS(3), 1, + [84061] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5908), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2735), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(1996), 1, + sym_type_arguments, + STATE(2510), 1, + sym_trait_bounds, + STATE(2773), 2, sym_line_comment, sym_block_comment, - ACTIONS(5910), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83241] = 7, + [84084] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(3585), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2736), 2, + ACTIONS(5955), 1, + anon_sym_in, + STATE(2774), 2, sym_line_comment, sym_block_comment, - [83264] = 4, + ACTIONS(5957), 3, + sym_self, + sym_super, + sym_crate, + [84103] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2737), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(2299), 1, + sym_parameters, + STATE(3319), 1, + sym_type_parameters, + STATE(2775), 2, sym_line_comment, sym_block_comment, - ACTIONS(949), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [83281] = 7, + [84126] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5912), 1, - anon_sym_SEMI, - STATE(3597), 1, - sym_where_clause, - STATE(2738), 2, + ACTIONS(5959), 1, + anon_sym_RPAREN, + ACTIONS(5961), 1, + anon_sym_COMMA, + STATE(3026), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [83304] = 7, + [84149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - ACTIONS(4941), 1, - anon_sym_LT, - STATE(2265), 1, - sym_parameters, - STATE(3319), 1, - sym_type_parameters, - STATE(2739), 2, + ACTIONS(5963), 1, + anon_sym_in, + STATE(2777), 2, sym_line_comment, sym_block_comment, - [83327] = 5, + ACTIONS(5965), 3, + sym_self, + sym_super, + sym_crate, + [84168] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(2740), 2, + ACTIONS(5967), 1, + anon_sym_LBRACE, + ACTIONS(5969), 1, + anon_sym_for, + ACTIONS(5971), 1, + anon_sym_loop, + ACTIONS(5973), 1, + anon_sym_while, + STATE(2778), 2, sym_line_comment, sym_block_comment, - ACTIONS(5914), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83346] = 7, + [84191] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5916), 1, - anon_sym_RPAREN, - ACTIONS(5918), 1, - anon_sym_COMMA, - STATE(2801), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2741), 2, + ACTIONS(5975), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_for, + ACTIONS(5979), 1, + anon_sym_loop, + ACTIONS(5981), 1, + anon_sym_while, + STATE(2779), 2, sym_line_comment, sym_block_comment, - [83369] = 7, + [84214] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(3472), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2742), 2, + STATE(2780), 2, sym_line_comment, sym_block_comment, - [83392] = 7, + ACTIONS(5983), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [84231] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3474), 1, + STATE(3658), 1, sym_block, - STATE(3622), 1, + STATE(3664), 1, sym_label, - STATE(2743), 2, + STATE(2781), 2, sym_line_comment, sym_block_comment, - [83415] = 7, + [84254] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_declaration_list, - STATE(3107), 1, - sym_where_clause, - STATE(2744), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(2298), 1, + sym_parameters, + STATE(3344), 1, + sym_type_parameters, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [83438] = 5, + [84277] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5308), 1, - anon_sym_PLUS, - STATE(2745), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5713), 1, + sym_identifier, + STATE(3558), 1, + sym_type_arguments, + STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(5920), 3, + [84300] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5985), 1, anon_sym_COLON, - anon_sym_GT, + STATE(2784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4963), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - [83457] = 7, + [84319] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5060), 1, + ACTIONS(1381), 1, + anon_sym_RPAREN, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5922), 1, - anon_sym_SEMI, - STATE(3469), 1, - sym_where_clause, - STATE(2746), 2, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [83480] = 7, + [84342] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(538), 1, - sym_declaration_list, - STATE(3310), 1, - sym_where_clause, - STATE(2747), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(3664), 1, + sym_label, + STATE(3679), 1, + sym_block, + STATE(2786), 2, + sym_line_comment, + sym_block_comment, + [84365] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [83503] = 7, + ACTIONS(4350), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [84382] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5795), 1, + ACTIONS(5785), 1, anon_sym_COLON_COLON, - ACTIONS(5924), 1, + ACTIONS(5987), 1, anon_sym_for, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2748), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - [83526] = 7, + [84405] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5926), 1, - anon_sym_LBRACE, - ACTIONS(5928), 1, - anon_sym_for, - ACTIONS(5930), 1, - anon_sym_loop, - ACTIONS(5932), 1, - anon_sym_while, - STATE(2749), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(2265), 1, + sym_parameters, + STATE(3357), 1, + sym_type_parameters, + STATE(2789), 2, sym_line_comment, sym_block_comment, - [83549] = 7, - ACTIONS(103), 1, + [84428] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_declaration_list, - STATE(3184), 1, - sym_where_clause, - STATE(2750), 2, + ACTIONS(5989), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2790), 2, sym_line_comment, sym_block_comment, - [83572] = 7, + ACTIONS(5991), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84447] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3594), 1, + STATE(3501), 1, sym_block, - STATE(3622), 1, + STATE(3664), 1, sym_label, - STATE(2751), 2, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [83595] = 7, + [84470] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3599), 1, + STATE(3520), 1, sym_block, - STATE(3622), 1, + STATE(3664), 1, sym_label, - STATE(2752), 2, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [83618] = 7, + [84493] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - STATE(674), 1, - sym_field_declaration_list, - STATE(3206), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5993), 1, + anon_sym_SEMI, + STATE(3567), 1, sym_where_clause, - STATE(2753), 2, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [83641] = 5, + [84516] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4544), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5934), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2754), 2, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5276), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2794), 2, sym_line_comment, sym_block_comment, - [83660] = 7, + [84537] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3622), 1, - sym_label, - STATE(3693), 1, + STATE(3662), 1, sym_block, - STATE(2755), 2, + STATE(3664), 1, + sym_label, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [83683] = 7, + [84560] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - STATE(3574), 1, + STATE(3664), 1, + sym_label, + STATE(3668), 1, sym_block, - STATE(3622), 1, + STATE(2796), 2, + sym_line_comment, + sym_block_comment, + [84583] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(395), 1, + sym_block, + STATE(3574), 1, sym_label, - STATE(2756), 2, + STATE(2797), 2, sym_line_comment, sym_block_comment, - [83706] = 7, + [84606] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5936), 1, - anon_sym_RBRACK, - ACTIONS(5938), 1, + ACTIONS(5995), 1, anon_sym_COMMA, - STATE(2803), 1, - aux_sym_slice_pattern_repeat1, - STATE(2757), 2, + ACTIONS(4224), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2798), 3, sym_line_comment, sym_block_comment, - [83729] = 7, + aux_sym_arguments_repeat1, + [84625] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5795), 1, - anon_sym_COLON_COLON, - ACTIONS(5940), 1, - anon_sym_for, - STATE(1974), 1, - sym_type_arguments, - STATE(2758), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(3664), 1, + sym_label, + STATE(3678), 1, + sym_block, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [83752] = 6, + [84648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5286), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2759), 2, + ACTIONS(5360), 1, + anon_sym_PLUS, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [83773] = 7, + ACTIONS(5998), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84667] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5942), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2760), 2, + STATE(3481), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2801), 2, sym_line_comment, sym_block_comment, - [83796] = 7, + [84690] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - ACTIONS(5944), 1, - anon_sym_GT, - STATE(3324), 1, - sym_lifetime, - STATE(2761), 2, + STATE(414), 1, + sym_block, + STATE(3574), 1, + sym_label, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [83819] = 7, + [84713] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5946), 1, - anon_sym_LBRACE, - ACTIONS(5948), 1, - anon_sym_for, - ACTIONS(5950), 1, - anon_sym_loop, - ACTIONS(5952), 1, - anon_sym_while, - STATE(2762), 2, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5284), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2803), 2, sym_line_comment, sym_block_comment, - [83842] = 6, + [84734] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4210), 1, + ACTIONS(6000), 1, anon_sym_LBRACE, - STATE(3013), 1, - sym_use_list, - ACTIONS(5954), 2, - sym_identifier, - sym_super, - STATE(2763), 2, + ACTIONS(6002), 1, + anon_sym_for, + ACTIONS(6004), 1, + anon_sym_loop, + ACTIONS(6006), 1, + anon_sym_while, + STATE(2804), 2, sym_line_comment, sym_block_comment, - [83863] = 5, + [84757] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5956), 1, + ACTIONS(6008), 1, aux_sym_token_repetition_pattern_token1, - STATE(2764), 2, + STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(5958), 3, + ACTIONS(6010), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [83882] = 7, + [84776] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5960), 1, - sym_identifier, - STATE(2069), 1, + ACTIONS(5785), 1, + anon_sym_COLON_COLON, + ACTIONS(6012), 1, + anon_sym_for, + STATE(1993), 1, sym_type_arguments, - STATE(2765), 2, + STATE(2806), 2, sym_line_comment, sym_block_comment, - [83905] = 7, + [84799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5302), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_enum_variant_list, - STATE(3194), 1, - sym_where_clause, - STATE(2766), 2, + ACTIONS(4588), 1, + anon_sym_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(4590), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [83928] = 7, + [84820] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - anon_sym_where, - STATE(547), 1, - sym_field_declaration_list, - STATE(3332), 1, - sym_where_clause, - STATE(2767), 2, + ACTIONS(6014), 1, + anon_sym_DQUOTE, + STATE(2587), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2808), 2, sym_line_comment, sym_block_comment, - [83951] = 7, + [84841] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1389), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2768), 2, - sym_line_comment, - sym_block_comment, - [83974] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5782), 1, - anon_sym_COLON_COLON, - STATE(2769), 2, + ACTIONS(6018), 1, + anon_sym_for, + ACTIONS(6020), 1, + anon_sym_loop, + ACTIONS(6022), 1, + anon_sym_while, + STATE(2809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4803), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83993] = 6, + [84864] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COLON_COLON, - ACTIONS(4556), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2770), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(3664), 1, + sym_label, + STATE(3685), 1, + sym_block, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [84014] = 7, + [84887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(657), 1, - sym_declaration_list, - STATE(3140), 1, - sym_where_clause, - STATE(2771), 2, + ACTIONS(6024), 1, + sym_identifier, + STATE(2811), 2, sym_line_comment, sym_block_comment, - [84037] = 5, + ACTIONS(6026), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [84906] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - STATE(2772), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(3311), 1, + sym_trait_bounds, + ACTIONS(5587), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2812), 2, sym_line_comment, sym_block_comment, - ACTIONS(5962), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84056] = 7, + [84927] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5964), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4857), 1, anon_sym_for, - ACTIONS(5968), 1, - anon_sym_loop, - ACTIONS(5970), 1, - anon_sym_while, - STATE(2773), 2, + ACTIONS(5785), 1, + anon_sym_COLON_COLON, + STATE(1993), 1, + sym_type_arguments, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [84079] = 5, + [84950] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 1, + ACTIONS(4230), 1, + anon_sym_LBRACE, + STATE(3091), 1, + sym_use_list, + ACTIONS(6028), 2, sym_identifier, - STATE(2774), 2, + sym_super, + STATE(2814), 2, sym_line_comment, sym_block_comment, - ACTIONS(5974), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84098] = 7, + [84971] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(739), 1, - sym_declaration_list, - STATE(3255), 1, - sym_where_clause, - STATE(2775), 2, - sym_line_comment, - sym_block_comment, - [84121] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5976), 1, - anon_sym_RPAREN, - ACTIONS(5978), 1, - anon_sym_COMMA, - STATE(2941), 1, - aux_sym_slice_pattern_repeat1, - STATE(2776), 2, + ACTIONS(3348), 1, + anon_sym_SQUOTE, + STATE(3576), 1, + sym_block, + STATE(3664), 1, + sym_label, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [84144] = 7, + [84994] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(4953), 1, - anon_sym_LBRACE, - STATE(1132), 1, - sym_field_declaration_list, - STATE(3202), 1, - sym_where_clause, - STATE(2777), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6030), 1, + anon_sym_SEMI, + ACTIONS(6032), 1, + anon_sym_EQ, + ACTIONS(6034), 1, + anon_sym_else, + STATE(2816), 2, sym_line_comment, sym_block_comment, - [84167] = 7, + [85017] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(4819), 1, - anon_sym_for, - ACTIONS(5795), 1, + ACTIONS(5785), 1, anon_sym_COLON_COLON, - STATE(1974), 1, + ACTIONS(6036), 1, + anon_sym_for, + STATE(1993), 1, sym_type_arguments, - STATE(2778), 2, + STATE(2817), 2, sym_line_comment, sym_block_comment, - [84190] = 7, + [85040] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5960), 1, - sym_identifier, - STATE(2070), 1, + ACTIONS(5785), 1, + anon_sym_COLON_COLON, + ACTIONS(6038), 1, + anon_sym_for, + STATE(1993), 1, sym_type_arguments, - STATE(2779), 2, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [84213] = 7, + [85063] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1388), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2780), 2, + ACTIONS(5544), 1, + anon_sym_COLON, + ACTIONS(5546), 1, + anon_sym_PIPE, + ACTIONS(5548), 1, + anon_sym_COMMA, + STATE(3081), 1, + aux_sym_closure_parameters_repeat1, + STATE(2819), 2, sym_line_comment, sym_block_comment, - [84236] = 7, + [85086] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(1393), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2781), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(2090), 1, + sym_type_arguments, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [84259] = 7, + [85109] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5795), 1, + ACTIONS(5785), 1, anon_sym_COLON_COLON, - ACTIONS(5980), 1, + ACTIONS(6040), 1, anon_sym_for, - STATE(1974), 1, + STATE(1993), 1, sym_type_arguments, - STATE(2782), 2, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [84282] = 7, + [85132] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4066), 1, + anon_sym_LPAREN, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5795), 1, - anon_sym_COLON_COLON, - ACTIONS(5982), 1, - anon_sym_for, - STATE(1974), 1, + STATE(1685), 1, + sym_parameters, + STATE(1996), 1, sym_type_arguments, - STATE(2783), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - [84305] = 6, + [85155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5984), 1, - anon_sym_DQUOTE, - STATE(2625), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5697), 2, - sym_string_content, - sym_escape_sequence, - STATE(2784), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6042), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [84326] = 7, + [85173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5795), 1, - anon_sym_COLON_COLON, - ACTIONS(5986), 1, - anon_sym_for, - STATE(1974), 1, - sym_type_arguments, - STATE(2785), 2, + ACTIONS(6044), 1, + anon_sym_RBRACE, + ACTIONS(6046), 1, + anon_sym_COMMA, + STATE(2824), 3, sym_line_comment, sym_block_comment, - [84349] = 7, - ACTIONS(19), 1, + aux_sym_enum_variant_list_repeat2, + [85191] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5005), 1, anon_sym_LBRACE, + ACTIONS(6049), 1, + anon_sym_SEMI, + STATE(558), 1, + sym_declaration_list, + STATE(2825), 2, + sym_line_comment, + sym_block_comment, + [85211] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(412), 1, - sym_block, - STATE(3541), 1, - sym_label, - STATE(2786), 2, + ACTIONS(6051), 1, + anon_sym_RBRACE, + ACTIONS(6053), 1, + anon_sym_COMMA, + STATE(2873), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [84372] = 7, + [85231] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - anon_sym_SQUOTE, - STATE(3579), 1, - sym_block, - STATE(3622), 1, - sym_label, - STATE(2787), 2, + ACTIONS(6055), 1, + anon_sym_SEMI, + STATE(1168), 1, + sym_declaration_list, + STATE(2827), 2, sym_line_comment, sym_block_comment, - [84395] = 7, + [85251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, - anon_sym_LT2, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5870), 1, - sym_identifier, - STATE(1596), 1, - sym_type_arguments, - STATE(2788), 2, + ACTIONS(6059), 1, + anon_sym_EQ, + ACTIONS(6057), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2828), 2, sym_line_comment, sym_block_comment, - [84418] = 6, + [85269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_SEMI, - STATE(1248), 1, - sym_declaration_list, - STATE(2789), 2, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [84438] = 6, + ACTIONS(4963), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85285] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(5990), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6061), 1, anon_sym_SEMI, - STATE(3452), 1, - sym_where_clause, - STATE(2790), 2, + ACTIONS(6063), 1, + anon_sym_EQ, + STATE(2830), 2, sym_line_comment, sym_block_comment, - [84458] = 6, + [85305] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(6065), 1, anon_sym_RBRACE, - ACTIONS(5992), 1, + ACTIONS(6067), 1, anon_sym_COMMA, - STATE(2927), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2791), 2, + STATE(3056), 1, + aux_sym_struct_pattern_repeat1, + STATE(2831), 2, + sym_line_comment, + sym_block_comment, + [85325] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6069), 1, + anon_sym_SEMI, + STATE(636), 1, + sym_declaration_list, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [84478] = 6, + [85345] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5994), 1, + ACTIONS(5072), 1, anon_sym_RBRACE, - ACTIONS(5996), 1, + ACTIONS(6071), 1, anon_sym_COMMA, - STATE(2833), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2792), 2, + STATE(2824), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [84498] = 4, + [85365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2793), 2, + ACTIONS(5793), 1, + anon_sym_RPAREN, + ACTIONS(5795), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84514] = 6, + [85385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5998), 1, - anon_sym_SEMI, - STATE(1075), 1, - sym_declaration_list, - STATE(2794), 2, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [84534] = 6, + ACTIONS(6073), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, - anon_sym_RBRACE, - ACTIONS(5992), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5719), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2929), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2795), 2, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [84554] = 6, + [85419] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6000), 1, - sym_identifier, - ACTIONS(6002), 1, - anon_sym_ref, - ACTIONS(6004), 1, - sym_mutable_specifier, - STATE(2796), 2, + ACTIONS(943), 1, + anon_sym_RBRACK, + ACTIONS(4216), 1, + anon_sym_COMMA, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(2837), 2, sym_line_comment, sym_block_comment, - [84574] = 6, + [85439] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - ACTIONS(4849), 1, - anon_sym_BANG, - ACTIONS(6006), 1, - sym_identifier, - STATE(2797), 2, + ACTIONS(4386), 1, + anon_sym_RBRACE, + ACTIONS(6075), 1, + anon_sym_COMMA, + STATE(3008), 1, + aux_sym_use_list_repeat1, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [84594] = 6, + [85459] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6008), 1, - anon_sym_SEMI, - STATE(722), 1, - sym_declaration_list, - STATE(2798), 2, + ACTIONS(2708), 1, + anon_sym_RPAREN, + ACTIONS(6077), 1, + anon_sym_COMMA, + STATE(3028), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [84614] = 6, + [85479] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_RPAREN, - ACTIONS(5455), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_parameters_repeat1, - STATE(2799), 2, + STATE(2840), 2, sym_line_comment, sym_block_comment, - [84634] = 6, + ACTIONS(6079), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85495] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(3092), 1, anon_sym_RBRACK, - ACTIONS(4198), 1, + ACTIONS(6081), 1, anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(2800), 2, + STATE(2759), 1, + aux_sym_slice_pattern_repeat1, + STATE(2841), 2, sym_line_comment, sym_block_comment, - [84654] = 6, + [85515] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2558), 1, - anon_sym_RPAREN, - ACTIONS(6010), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2801), 2, + STATE(2842), 2, sym_line_comment, sym_block_comment, - [84674] = 6, + ACTIONS(4877), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, - anon_sym_PLUS, - ACTIONS(6012), 1, - sym_mutable_specifier, - ACTIONS(6014), 1, - sym_self, - STATE(2802), 2, + ACTIONS(6085), 1, + anon_sym_COLON, + ACTIONS(6083), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [84694] = 6, + [85549] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3072), 1, - anon_sym_RBRACK, - ACTIONS(6016), 1, - anon_sym_COMMA, - STATE(2695), 1, - aux_sym_slice_pattern_repeat1, - STATE(2803), 2, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [84714] = 6, + ACTIONS(4879), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85565] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, + ACTIONS(6087), 1, anon_sym_RBRACE, - ACTIONS(6020), 1, + ACTIONS(6089), 1, anon_sym_COMMA, - STATE(2849), 1, + STATE(2888), 1, aux_sym_struct_pattern_repeat1, - STATE(2804), 2, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [84734] = 6, + [85585] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, + ACTIONS(6091), 1, anon_sym_RBRACE, - ACTIONS(6024), 1, + ACTIONS(6093), 1, anon_sym_COMMA, - STATE(2851), 1, + STATE(2891), 1, aux_sym_struct_pattern_repeat1, - STATE(2805), 2, + STATE(2846), 2, + sym_line_comment, + sym_block_comment, + [85605] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [84754] = 6, + ACTIONS(6095), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3222), 1, + ACTIONS(3228), 1, anon_sym_RPAREN, - ACTIONS(6026), 1, + ACTIONS(6097), 1, anon_sym_COMMA, - STATE(2978), 1, + STATE(3065), 1, aux_sym_tuple_type_repeat1, - STATE(2806), 2, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [84774] = 5, + [85641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6028), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2807), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - [84792] = 6, + ACTIONS(6099), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85657] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(6030), 1, - anon_sym_SEMI, - STATE(3435), 1, - sym_where_clause, - STATE(2808), 2, + STATE(2850), 2, sym_line_comment, sym_block_comment, - [84812] = 6, + ACTIONS(6101), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85673] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, + ACTIONS(5631), 1, anon_sym_RPAREN, - ACTIONS(5488), 1, + ACTIONS(5633), 1, anon_sym_COMMA, - STATE(2854), 1, + STATE(2895), 1, aux_sym_parameters_repeat1, - STATE(2809), 2, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [84832] = 6, + [85693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6032), 1, - anon_sym_SEMI, - STATE(561), 1, - sym_declaration_list, - STATE(2810), 2, + ACTIONS(5719), 1, + anon_sym_RPAREN, + ACTIONS(6103), 1, + anon_sym_COMMA, + STATE(2852), 3, sym_line_comment, sym_block_comment, - [84852] = 6, + aux_sym_parameters_repeat1, + [85711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6034), 1, - anon_sym_GT, - ACTIONS(6036), 1, + STATE(2853), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6106), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3038), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2811), 2, + [85727] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2854), 2, sym_line_comment, sym_block_comment, - [84872] = 6, + ACTIONS(6108), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85743] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(6038), 1, + ACTIONS(6110), 1, anon_sym_SEMI, - ACTIONS(6040), 1, + ACTIONS(6112), 1, anon_sym_EQ, - STATE(2812), 2, + STATE(2855), 2, sym_line_comment, sym_block_comment, - [84892] = 6, + [85763] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(969), 1, - anon_sym_RPAREN, - ACTIONS(4186), 1, + ACTIONS(6114), 1, + anon_sym_RBRACE, + ACTIONS(6116), 1, anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(2813), 2, + STATE(2881), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [84912] = 6, + [85783] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6042), 1, + ACTIONS(6118), 1, anon_sym_RBRACE, - ACTIONS(6044), 1, + ACTIONS(6120), 1, anon_sym_COMMA, - STATE(2856), 1, + STATE(2899), 1, aux_sym_enum_variant_list_repeat2, - STATE(2814), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [84932] = 5, + [85803] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6046), 1, - anon_sym_GT, - ACTIONS(6048), 1, - anon_sym_COMMA, - STATE(2815), 3, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6122), 1, + anon_sym_SEMI, + ACTIONS(6124), 1, + anon_sym_EQ, + STATE(2858), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [84950] = 6, + [85823] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4737), 1, - anon_sym_GT, - ACTIONS(6051), 1, - anon_sym_COMMA, - STATE(2815), 1, - aux_sym_type_parameters_repeat1, - STATE(2816), 2, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [84970] = 6, + ACTIONS(1481), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6053), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6126), 1, anon_sym_SEMI, - STATE(631), 1, - sym_declaration_list, - STATE(2817), 2, + STATE(3629), 1, + sym_where_clause, + STATE(2860), 2, sym_line_comment, sym_block_comment, - [84990] = 6, + [85859] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4723), 1, + ACTIONS(4765), 1, anon_sym_GT, - ACTIONS(6055), 1, + ACTIONS(6128), 1, anon_sym_COMMA, - STATE(2815), 1, + STATE(3108), 1, aux_sym_type_parameters_repeat1, - STATE(2818), 2, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [85010] = 6, + [85879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4723), 1, + ACTIONS(4765), 1, anon_sym_GT, - ACTIONS(6055), 1, + ACTIONS(6128), 1, anon_sym_COMMA, - STATE(2861), 1, + STATE(2903), 1, aux_sym_type_parameters_repeat1, - STATE(2819), 2, - sym_line_comment, - sym_block_comment, - [85030] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6057), 1, - anon_sym_SEMI, - STATE(711), 1, - sym_declaration_list, - STATE(2820), 2, + STATE(2862), 2, sym_line_comment, sym_block_comment, - [85050] = 6, + [85899] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6059), 1, + ACTIONS(6130), 1, anon_sym_SEMI, - STATE(1098), 1, + STATE(1190), 1, sym_declaration_list, - STATE(2821), 2, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [85070] = 5, + [85919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(6061), 2, + ACTIONS(6132), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2822), 2, - sym_line_comment, - sym_block_comment, - [85088] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6063), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2823), 2, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [85106] = 6, + [85937] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(6065), 1, + ACTIONS(6134), 1, anon_sym_SEMI, - ACTIONS(6067), 1, + ACTIONS(6136), 1, anon_sym_EQ, - STATE(2824), 2, + STATE(2865), 2, sym_line_comment, sym_block_comment, - [85126] = 6, + [85957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1023), 1, - anon_sym_RBRACK, - ACTIONS(6069), 1, - anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(2825), 2, + STATE(2866), 2, sym_line_comment, sym_block_comment, - [85146] = 6, + ACTIONS(4881), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6071), 1, + ACTIONS(6138), 1, anon_sym_RBRACE, - ACTIONS(6073), 1, + ACTIONS(6140), 1, anon_sym_COMMA, - STATE(2869), 1, + STATE(2909), 1, aux_sym_field_declaration_list_repeat1, - STATE(2826), 2, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [85166] = 6, + [85993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(6075), 1, + ACTIONS(6142), 1, anon_sym_SEMI, - STATE(3679), 1, + STATE(3427), 1, sym_where_clause, - STATE(2827), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [85186] = 6, + [86013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(6077), 1, + ACTIONS(6144), 1, anon_sym_SEMI, - STATE(3440), 1, + STATE(3489), 1, sym_where_clause, - STATE(2828), 2, - sym_line_comment, - sym_block_comment, - [85206] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6079), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2829), 2, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [85224] = 6, + [86033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(6081), 1, + ACTIONS(6146), 1, anon_sym_SEMI, - STATE(1119), 1, + STATE(503), 1, sym_declaration_list, - STATE(2830), 2, - sym_line_comment, - sym_block_comment, - [85244] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(923), 1, - anon_sym_RBRACK, - ACTIONS(4228), 1, - anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(2831), 2, + STATE(2870), 2, sym_line_comment, sym_block_comment, - [85264] = 6, + [86053] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6083), 1, + ACTIONS(6148), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(1211), 1, sym_declaration_list, - STATE(2832), 2, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [85284] = 6, + [86073] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4845), 1, + ACTIONS(5027), 1, anon_sym_RBRACE, - ACTIONS(6085), 1, + ACTIONS(6150), 1, anon_sym_COMMA, - STATE(2963), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2833), 2, + STATE(3057), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2872), 2, sym_line_comment, sym_block_comment, - [85304] = 6, + [86093] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RBRACK, - ACTIONS(4142), 1, + ACTIONS(4885), 1, + anon_sym_RBRACE, + ACTIONS(6152), 1, anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(2834), 2, + STATE(2879), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [85324] = 6, + [86113] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(6087), 1, + ACTIONS(6154), 1, anon_sym_SEMI, - STATE(3492), 1, + STATE(3544), 1, sym_where_clause, - STATE(2835), 2, + STATE(2874), 2, sym_line_comment, sym_block_comment, - [85344] = 5, + [86133] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6079), 1, + ACTIONS(6156), 1, anon_sym_RPAREN, - ACTIONS(6089), 1, + ACTIONS(6158), 1, anon_sym_COMMA, - STATE(2836), 3, + STATE(3037), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2875), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [85362] = 6, + [86153] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, + ACTIONS(949), 1, anon_sym_RPAREN, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_COMMA, - STATE(2629), 1, + STATE(2798), 1, aux_sym_arguments_repeat1, - STATE(2837), 2, + STATE(2876), 2, sym_line_comment, sym_block_comment, - [85382] = 6, + [86173] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_GT, - ACTIONS(6092), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_type_arguments_repeat1, - STATE(2838), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6160), 1, + anon_sym_SEMI, + STATE(505), 1, + sym_declaration_list, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [85402] = 5, + [86193] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_GT, - ACTIONS(6094), 1, - anon_sym_COMMA, - STATE(2839), 3, + ACTIONS(6162), 1, + sym_identifier, + ACTIONS(6164), 1, + anon_sym_ref, + ACTIONS(6166), 1, + sym_mutable_specifier, + STATE(2878), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [85420] = 6, + [86213] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_EQ, - STATE(3626), 1, - sym_type_parameters, - STATE(2840), 2, + ACTIONS(6168), 1, + anon_sym_RBRACE, + ACTIONS(6170), 1, + anon_sym_COMMA, + STATE(2879), 3, sym_line_comment, sym_block_comment, - [85440] = 5, + aux_sym_field_initializer_list_repeat1, + [86231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6101), 1, - anon_sym_COLON, - ACTIONS(6099), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6173), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2841), 2, + STATE(2880), 2, sym_line_comment, sym_block_comment, - [85458] = 5, + [86249] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6103), 2, + ACTIONS(4903), 1, anon_sym_RBRACE, + ACTIONS(6175), 1, anon_sym_COMMA, - STATE(2842), 2, + STATE(2879), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2881), 2, sym_line_comment, sym_block_comment, - [85476] = 6, + [86269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1019), 1, - anon_sym_RBRACK, - ACTIONS(6105), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6177), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(2843), 2, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [85496] = 5, + [86287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6107), 1, + ACTIONS(6181), 1, + anon_sym_COLON, + ACTIONS(6179), 2, anon_sym_RBRACE, - ACTIONS(6109), 1, anon_sym_COMMA, - STATE(2844), 3, + STATE(2883), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [85514] = 6, + [86305] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, - anon_sym_GT, - ACTIONS(6112), 1, + ACTIONS(963), 1, + anon_sym_RBRACK, + ACTIONS(6183), 1, anon_sym_COMMA, - STATE(2883), 1, - aux_sym_type_arguments_repeat1, - STATE(2845), 2, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(2884), 2, sym_line_comment, sym_block_comment, - [85534] = 6, + [86325] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, + ACTIONS(1627), 1, anon_sym_GT, - ACTIONS(6112), 1, + ACTIONS(6185), 1, anon_sym_COMMA, - STATE(2839), 1, + STATE(2921), 1, aux_sym_type_arguments_repeat1, - STATE(2846), 2, + STATE(2885), 2, sym_line_comment, sym_block_comment, - [85554] = 6, + [86345] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3088), 1, - anon_sym_RPAREN, - ACTIONS(6114), 1, + ACTIONS(1627), 1, + anon_sym_GT, + ACTIONS(6185), 1, anon_sym_COMMA, - STATE(2695), 1, - aux_sym_slice_pattern_repeat1, - STATE(2847), 2, + STATE(3122), 1, + aux_sym_type_arguments_repeat1, + STATE(2886), 2, sym_line_comment, sym_block_comment, - [85574] = 6, + [86365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5605), 1, + ACTIONS(3098), 1, + anon_sym_RPAREN, + ACTIONS(6187), 1, anon_sym_COMMA, - ACTIONS(6116), 1, - anon_sym_PIPE, - STATE(2956), 1, - aux_sym_closure_parameters_repeat1, - STATE(2848), 2, + STATE(2759), 1, + aux_sym_slice_pattern_repeat1, + STATE(2887), 2, sym_line_comment, sym_block_comment, - [85594] = 6, + [86385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5260), 1, + ACTIONS(5324), 1, anon_sym_RBRACE, - ACTIONS(6118), 1, + ACTIONS(6189), 1, anon_sym_COMMA, - STATE(2844), 1, + STATE(3009), 1, aux_sym_struct_pattern_repeat1, - STATE(2849), 2, + STATE(2888), 2, sym_line_comment, sym_block_comment, - [85614] = 6, + [86405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3090), 1, + ACTIONS(3100), 1, anon_sym_RPAREN, - ACTIONS(6120), 1, + ACTIONS(6191), 1, anon_sym_COMMA, - STATE(2695), 1, + STATE(2759), 1, aux_sym_slice_pattern_repeat1, - STATE(2850), 2, + STATE(2889), 2, sym_line_comment, sym_block_comment, - [85634] = 6, + [86425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5262), 1, + ACTIONS(6193), 1, + sym_identifier, + ACTIONS(6195), 1, + anon_sym_ref, + ACTIONS(6197), 1, + sym_mutable_specifier, + STATE(2890), 2, + sym_line_comment, + sym_block_comment, + [86445] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5328), 1, anon_sym_RBRACE, - ACTIONS(6122), 1, + ACTIONS(6199), 1, anon_sym_COMMA, - STATE(2844), 1, + STATE(3009), 1, aux_sym_struct_pattern_repeat1, - STATE(2851), 2, + STATE(2891), 2, sym_line_comment, sym_block_comment, - [85654] = 6, + [86465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2124), 1, - anon_sym_RPAREN, - ACTIONS(6124), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2852), 2, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(4861), 1, + anon_sym_BANG, + ACTIONS(6201), 1, + sym_identifier, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [85674] = 6, + [86485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4909), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - STATE(1973), 1, - sym_type_arguments, - STATE(2853), 2, + ACTIONS(6203), 1, + anon_sym_SEMI, + STATE(566), 1, + sym_declaration_list, + STATE(2893), 2, sym_line_comment, sym_block_comment, - [85694] = 6, + [86505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1393), 1, - anon_sym_RPAREN, - ACTIONS(5510), 1, + ACTIONS(6207), 1, + anon_sym_COLON, + ACTIONS(6205), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2854), 2, + STATE(2894), 2, sym_line_comment, sym_block_comment, - [85714] = 6, + [86523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1393), 1, + ACTIONS(1399), 1, anon_sym_RPAREN, - ACTIONS(5510), 1, + ACTIONS(5487), 1, anon_sym_COMMA, - STATE(2887), 1, + STATE(2852), 1, aux_sym_parameters_repeat1, - STATE(2855), 2, + STATE(2895), 2, sym_line_comment, sym_block_comment, - [85734] = 6, + [86543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_RBRACE, - ACTIONS(6126), 1, + ACTIONS(1399), 1, + anon_sym_RPAREN, + ACTIONS(5487), 1, anon_sym_COMMA, - STATE(2927), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2856), 2, + STATE(2924), 1, + aux_sym_parameters_repeat1, + STATE(2896), 2, sym_line_comment, sym_block_comment, - [85754] = 6, + [86563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(6209), 1, anon_sym_RBRACE, - ACTIONS(6126), 1, + ACTIONS(6211), 1, anon_sym_COMMA, - STATE(2891), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2857), 2, + STATE(3046), 1, + aux_sym_struct_pattern_repeat1, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [85774] = 6, + [86583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3076), 1, - anon_sym_RBRACK, - ACTIONS(6128), 1, - anon_sym_COMMA, - STATE(2695), 1, - aux_sym_slice_pattern_repeat1, - STATE(2858), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6213), 1, + anon_sym_SEMI, + STATE(568), 1, + sym_declaration_list, + STATE(2898), 2, sym_line_comment, sym_block_comment, - [85794] = 6, + [86603] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6130), 1, - anon_sym_SEMI, - STATE(497), 1, - sym_declaration_list, - STATE(2859), 2, + ACTIONS(5029), 1, + anon_sym_RBRACE, + ACTIONS(6215), 1, + anon_sym_COMMA, + STATE(2824), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [85814] = 5, + [86623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 2, - anon_sym_RPAREN, + ACTIONS(5029), 1, + anon_sym_RBRACE, + ACTIONS(6215), 1, anon_sym_COMMA, - STATE(2860), 2, + STATE(2928), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [85832] = 6, + [86643] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4717), 1, - anon_sym_GT, - ACTIONS(6132), 1, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(6217), 1, anon_sym_COMMA, - STATE(2815), 1, - aux_sym_type_parameters_repeat1, - STATE(2861), 2, + STATE(2852), 1, + aux_sym_parameters_repeat1, + STATE(2901), 2, sym_line_comment, sym_block_comment, - [85852] = 6, + [86663] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(6134), 1, + ACTIONS(6219), 1, anon_sym_SEMI, - STATE(1150), 1, + STATE(574), 1, sym_declaration_list, - STATE(2862), 2, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [85872] = 6, + [86683] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6136), 1, - anon_sym_SEMI, - ACTIONS(6138), 1, - anon_sym_EQ, - STATE(2863), 2, + ACTIONS(4767), 1, + anon_sym_GT, + ACTIONS(6221), 1, + anon_sym_COMMA, + STATE(3108), 1, + aux_sym_type_parameters_repeat1, + STATE(2903), 2, sym_line_comment, sym_block_comment, - [85892] = 6, + [86703] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6140), 1, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(6223), 1, anon_sym_SEMI, - ACTIONS(6142), 1, - anon_sym_EQ, - STATE(2864), 2, + STATE(1241), 1, + sym_declaration_list, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [85912] = 6, + [86723] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(6144), 1, + ACTIONS(6225), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(576), 1, sym_declaration_list, - STATE(2865), 2, + STATE(2905), 2, sym_line_comment, sym_block_comment, - [85932] = 6, + [86743] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6146), 1, + ACTIONS(6227), 1, anon_sym_SEMI, - STATE(499), 1, + STATE(1247), 1, sym_declaration_list, - STATE(2866), 2, + STATE(2906), 2, sym_line_comment, sym_block_comment, - [85952] = 6, + [86763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6148), 1, - anon_sym_SEMI, - ACTIONS(6150), 1, - anon_sym_EQ, - STATE(2867), 2, + ACTIONS(4660), 1, + anon_sym_COLON_COLON, + ACTIONS(6229), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [85972] = 5, + [86781] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_COLON, - ACTIONS(6152), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2868), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6231), 1, + anon_sym_SEMI, + ACTIONS(6233), 1, + anon_sym_EQ, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [85990] = 6, + [86801] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4963), 1, + ACTIONS(5036), 1, anon_sym_RBRACE, - ACTIONS(6156), 1, + ACTIONS(6235), 1, anon_sym_COMMA, - STATE(3005), 1, + STATE(3053), 1, aux_sym_field_declaration_list_repeat1, - STATE(2869), 2, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [86010] = 6, + [86821] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4963), 1, + ACTIONS(5036), 1, anon_sym_RBRACE, - ACTIONS(6156), 1, + ACTIONS(6235), 1, anon_sym_COMMA, - STATE(2902), 1, + STATE(2938), 1, aux_sym_field_declaration_list_repeat1, - STATE(2870), 2, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [86030] = 6, + [86841] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6158), 1, + ACTIONS(6237), 1, anon_sym_SEMI, - STATE(1168), 1, + STATE(1259), 1, sym_declaration_list, - STATE(2871), 2, - sym_line_comment, - sym_block_comment, - [86050] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2872), 2, + STATE(2911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86066] = 4, + [86861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2873), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(5727), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86082] = 6, + [86879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6160), 1, - anon_sym_RBRACE, - ACTIONS(6162), 1, - anon_sym_COMMA, - STATE(3094), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2874), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6239), 1, + anon_sym_SEMI, + STATE(712), 1, + sym_declaration_list, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [86102] = 6, + [86899] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(6164), 1, + ACTIONS(6241), 1, anon_sym_SEMI, - ACTIONS(6166), 1, + ACTIONS(6243), 1, anon_sym_EQ, - STATE(2875), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [86122] = 6, + [86919] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(6168), 1, + ACTIONS(6245), 1, anon_sym_SEMI, - STATE(3520), 1, + STATE(3568), 1, sym_where_clause, - STATE(2876), 2, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [86142] = 5, + [86939] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5691), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2877), 2, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [86160] = 6, + ACTIONS(4915), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86955] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1021), 1, - anon_sym_RPAREN, - ACTIONS(6170), 1, - anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(2878), 2, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [86180] = 5, + ACTIONS(4965), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5691), 1, + ACTIONS(965), 1, anon_sym_RPAREN, - ACTIONS(6172), 1, + ACTIONS(6247), 1, anon_sym_COMMA, - STATE(2879), 3, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(2918), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [86198] = 6, + [86991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6175), 1, - anon_sym_SEMI, - ACTIONS(6177), 1, - anon_sym_EQ, - STATE(2880), 2, + ACTIONS(6249), 1, + anon_sym_RBRACE, + ACTIONS(6251), 1, + anon_sym_COMMA, + STATE(3116), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [86218] = 6, + [87011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6179), 1, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6253), 1, anon_sym_SEMI, - ACTIONS(6181), 1, - anon_sym_RBRACK, - STATE(2881), 2, - sym_line_comment, - sym_block_comment, - [86238] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(6183), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2882), 2, + STATE(3641), 1, + sym_where_clause, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [86258] = 6, + [87031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, + ACTIONS(1643), 1, anon_sym_GT, - ACTIONS(6185), 1, + ACTIONS(6255), 1, anon_sym_COMMA, - STATE(2839), 1, + STATE(3122), 1, aux_sym_type_arguments_repeat1, - STATE(2883), 2, - sym_line_comment, - sym_block_comment, - [86278] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2884), 2, + STATE(2921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86294] = 4, + [87051] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2885), 2, + STATE(2922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4857), 3, + ACTIONS(4793), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86310] = 6, + [87067] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(6187), 1, - anon_sym_GT, - STATE(3384), 1, - sym_lifetime, - STATE(2886), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6257), 1, + anon_sym_EQ, + STATE(3691), 1, + sym_where_clause, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [86330] = 6, + [87087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1415), 1, + ACTIONS(1401), 1, anon_sym_RPAREN, - ACTIONS(6189), 1, + ACTIONS(6259), 1, anon_sym_COMMA, - STATE(2879), 1, + STATE(2852), 1, aux_sym_parameters_repeat1, - STATE(2887), 2, + STATE(2924), 2, sym_line_comment, sym_block_comment, - [86350] = 6, + [87107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6191), 1, + ACTIONS(6261), 1, anon_sym_GT, - ACTIONS(6193), 1, + ACTIONS(6263), 1, anon_sym_COMMA, - STATE(2914), 1, + STATE(2949), 1, aux_sym_use_bounds_repeat1, - STATE(2888), 2, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [86370] = 6, + [87127] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6195), 1, + ACTIONS(6265), 1, anon_sym_GT, - ACTIONS(6197), 1, + ACTIONS(6267), 1, anon_sym_COMMA, - STATE(2915), 1, + STATE(2950), 1, aux_sym_use_bounds_repeat1, - STATE(2889), 2, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [86390] = 5, + [87147] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - anon_sym_GT, - ACTIONS(6201), 1, - anon_sym_COMMA, - STATE(2890), 3, + STATE(2927), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86408] = 6, + ACTIONS(4905), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87163] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4992), 1, + ACTIONS(5048), 1, anon_sym_RBRACE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_COMMA, - STATE(2927), 1, + STATE(2824), 1, aux_sym_enum_variant_list_repeat2, - STATE(2891), 2, + STATE(2928), 2, sym_line_comment, sym_block_comment, - [86428] = 6, + [87183] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_GT, - ACTIONS(6206), 1, - anon_sym_COMMA, - STATE(2838), 1, - aux_sym_type_arguments_repeat1, - STATE(2892), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(6271), 1, + anon_sym_SEMI, + STATE(1291), 1, + sym_declaration_list, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [86448] = 6, + [87203] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6208), 1, + ACTIONS(6273), 1, anon_sym_SEMI, - STATE(1200), 1, + STATE(1293), 1, sym_declaration_list, - STATE(2893), 2, + STATE(2930), 2, sym_line_comment, sym_block_comment, - [86468] = 6, + [87223] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(6210), 1, - anon_sym_SEMI, - STATE(1202), 1, - sym_declaration_list, - STATE(2894), 2, + STATE(2931), 2, sym_line_comment, sym_block_comment, - [86488] = 4, + ACTIONS(4945), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2895), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4837), 3, + ACTIONS(4927), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86504] = 6, + [87255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_GT, - ACTIONS(6206), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_type_arguments_repeat1, - STATE(2896), 2, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [86524] = 6, + ACTIONS(4941), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6212), 1, + ACTIONS(6275), 1, anon_sym_SEMI, - STATE(1208), 1, + STATE(1299), 1, sym_declaration_list, - STATE(2897), 2, + STATE(2934), 2, sym_line_comment, sym_block_comment, - [86544] = 6, + [87291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6214), 1, + ACTIONS(6277), 1, anon_sym_SEMI, - STATE(1210), 1, + STATE(1301), 1, sym_declaration_list, - STATE(2898), 2, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [86564] = 4, + [87311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2899), 2, + ACTIONS(6279), 1, + anon_sym_GT, + ACTIONS(6281), 1, + anon_sym_COMMA, + STATE(3074), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4841), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86580] = 6, + [87331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(6216), 1, + ACTIONS(6283), 1, anon_sym_SEMI, - ACTIONS(6218), 1, + ACTIONS(6285), 1, anon_sym_EQ, - STATE(2900), 2, - sym_line_comment, - sym_block_comment, - [86600] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2901), 2, + STATE(2937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4907), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86616] = 6, + [87351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5054), 1, anon_sym_RBRACE, - ACTIONS(6220), 1, + ACTIONS(6287), 1, anon_sym_COMMA, - STATE(3005), 1, + STATE(3053), 1, aux_sym_field_declaration_list_repeat1, - STATE(2902), 2, - sym_line_comment, - sym_block_comment, - [86636] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2903), 2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86652] = 6, + [87371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6222), 1, - anon_sym_RPAREN, - ACTIONS(6224), 1, - anon_sym_COMMA, - STATE(2994), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2904), 2, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [86672] = 4, + ACTIONS(6289), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [87387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2905), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, + ACTIONS(4787), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86688] = 6, + [87403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3066), 1, - anon_sym_RPAREN, - ACTIONS(6226), 1, - anon_sym_COMMA, - STATE(2695), 1, - aux_sym_slice_pattern_repeat1, - STATE(2906), 2, + ACTIONS(6291), 1, + anon_sym_AMP_AMP, + ACTIONS(4406), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2941), 2, sym_line_comment, sym_block_comment, - [86708] = 4, + [87421] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2907), 2, + ACTIONS(3140), 1, + anon_sym_PLUS, + ACTIONS(6293), 1, + sym_mutable_specifier, + ACTIONS(6295), 1, + sym_self, + STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86724] = 4, + [87441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2908), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(6297), 1, + anon_sym_GT, + STATE(3342), 1, + sym_lifetime, + STATE(2943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4917), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86740] = 6, + [87461] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6228), 1, - anon_sym_GT, - ACTIONS(6230), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_use_bounds_repeat1, - STATE(2909), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6299), 1, + anon_sym_SEMI, + STATE(511), 1, + sym_declaration_list, + STATE(2944), 2, sym_line_comment, sym_block_comment, - [86760] = 6, + [87481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6232), 1, - anon_sym_GT, - ACTIONS(6234), 1, - anon_sym_COMMA, - STATE(3066), 1, - aux_sym_use_bounds_repeat1, - STATE(2910), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6301), 1, + anon_sym_SEMI, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [86780] = 4, + [87501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2911), 2, + STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, + ACTIONS(4953), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86796] = 6, + [87517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 1, - sym_identifier, - ACTIONS(6238), 1, - anon_sym_ref, - ACTIONS(6240), 1, - sym_mutable_specifier, - STATE(2912), 2, + ACTIONS(6305), 1, + anon_sym_GT, + ACTIONS(6307), 1, + anon_sym_COMMA, + STATE(2947), 3, sym_line_comment, sym_block_comment, - [86816] = 5, + aux_sym_for_lifetimes_repeat1, + [87535] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6244), 1, - anon_sym_COLON, - ACTIONS(6242), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2913), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6310), 1, + anon_sym_SEMI, + STATE(3447), 1, + sym_where_clause, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [86834] = 6, + [87555] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5720), 1, + ACTIONS(5846), 1, anon_sym_GT, - ACTIONS(6246), 1, + ACTIONS(6312), 1, anon_sym_COMMA, - STATE(3069), 1, + STATE(2995), 1, aux_sym_use_bounds_repeat1, - STATE(2914), 2, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [86854] = 6, + [87575] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, + ACTIONS(5848), 1, anon_sym_GT, - ACTIONS(6248), 1, + ACTIONS(6314), 1, anon_sym_COMMA, - STATE(3069), 1, + STATE(2995), 1, aux_sym_use_bounds_repeat1, - STATE(2915), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - [86874] = 6, + [87595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5000), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2916), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(6316), 1, + anon_sym_SEMI, + STATE(1341), 1, + sym_declaration_list, + STATE(2951), 2, sym_line_comment, sym_block_comment, - [86894] = 6, + [87615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6252), 1, + ACTIONS(6318), 1, anon_sym_SEMI, - STATE(1246), 1, + STATE(1343), 1, sym_declaration_list, - STATE(2917), 2, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [86914] = 6, + [87635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(6254), 1, - anon_sym_SEMI, - STATE(1254), 1, - sym_declaration_list, - STATE(2918), 2, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [86934] = 6, + ACTIONS(4907), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + STATE(2954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4921), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87667] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6256), 1, + ACTIONS(6320), 1, anon_sym_SEMI, - STATE(1256), 1, + STATE(1350), 1, sym_declaration_list, - STATE(2919), 2, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [86954] = 6, + [87687] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5000), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, - anon_sym_COMMA, - STATE(3006), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2920), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(6322), 1, + anon_sym_SEMI, + STATE(1352), 1, + sym_declaration_list, + STATE(2956), 2, sym_line_comment, sym_block_comment, - [86974] = 6, + [87707] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6258), 1, + ACTIONS(6324), 1, anon_sym_SEMI, - STATE(1262), 1, + STATE(1358), 1, sym_declaration_list, - STATE(2921), 2, + STATE(2957), 2, sym_line_comment, sym_block_comment, - [86994] = 6, + [87727] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6260), 1, + ACTIONS(6326), 1, anon_sym_SEMI, - STATE(1264), 1, + STATE(1360), 1, sym_declaration_list, - STATE(2922), 2, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [87014] = 6, + [87747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5733), 1, + anon_sym_GT, + ACTIONS(6328), 1, + anon_sym_COMMA, + STATE(2995), 1, + aux_sym_use_bounds_repeat1, + STATE(2959), 2, + sym_line_comment, + sym_block_comment, + [87767] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(6262), 1, + ACTIONS(6330), 1, anon_sym_SEMI, - ACTIONS(6264), 1, + ACTIONS(6332), 1, anon_sym_EQ, - STATE(2923), 2, + STATE(2960), 2, sym_line_comment, sym_block_comment, - [87034] = 6, + [87787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - anon_sym_RBRACE, - ACTIONS(6266), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2924), 2, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [87054] = 6, + ACTIONS(4869), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87803] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(6268), 1, + ACTIONS(6334), 1, anon_sym_SEMI, - STATE(1280), 1, + STATE(513), 1, sym_declaration_list, - STATE(2925), 2, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [87074] = 6, + [87823] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(3258), 1, + anon_sym_RPAREN, + ACTIONS(6336), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_tuple_type_repeat1, + STATE(2963), 2, + sym_line_comment, + sym_block_comment, + [87843] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6270), 1, + ACTIONS(6338), 1, anon_sym_SEMI, - STATE(1282), 1, + STATE(1378), 1, sym_declaration_list, - STATE(2926), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [87094] = 5, + [87863] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6272), 1, - anon_sym_RBRACE, - ACTIONS(6274), 1, - anon_sym_COMMA, - STATE(2927), 3, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(6340), 1, + anon_sym_SEMI, + STATE(1380), 1, + sym_declaration_list, + STATE(2965), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [87112] = 5, + [87883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6279), 1, - anon_sym_EQ, - ACTIONS(6277), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2928), 2, + ACTIONS(6291), 1, + anon_sym_AMP_AMP, + ACTIONS(6342), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2966), 2, sym_line_comment, sym_block_comment, - [87130] = 6, + [87901] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4969), 1, - anon_sym_RBRACE, - ACTIONS(6281), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2929), 2, + ACTIONS(5360), 1, + anon_sym_PLUS, + ACTIONS(6344), 1, + anon_sym_GT, + ACTIONS(6346), 1, + anon_sym_as, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [87150] = 6, + [87921] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6283), 1, - anon_sym_RBRACE, - ACTIONS(6285), 1, - anon_sym_COMMA, - STATE(2791), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2930), 2, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [87170] = 6, - ACTIONS(27), 1, + ACTIONS(4578), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [87937] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6287), 1, - anon_sym_move, - STATE(245), 1, - sym_closure_parameters, - STATE(2931), 2, + STATE(2969), 2, sym_line_comment, sym_block_comment, - [87190] = 5, + ACTIONS(4895), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - anon_sym_COLON, - ACTIONS(6289), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2932), 2, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(6348), 1, + anon_sym_COLON_COLON, + STATE(1811), 1, + sym_field_initializer_list, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [87208] = 6, + [87973] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6293), 1, - anon_sym_RBRACE, - ACTIONS(6295), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_struct_pattern_repeat1, - STATE(2933), 2, + ACTIONS(6350), 1, + anon_sym_move, + STATE(246), 1, + sym_closure_parameters, + STATE(2971), 2, sym_line_comment, sym_block_comment, - [87228] = 6, + [87993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(5004), 1, - anon_sym_COLON_COLON, - STATE(2545), 1, - sym_trait_bounds, - STATE(2934), 2, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(4222), 1, + anon_sym_COMMA, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(2972), 2, sym_line_comment, sym_block_comment, - [87248] = 4, + [88013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2935), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6352), 1, + anon_sym_SEMI, + ACTIONS(6354), 1, + anon_sym_EQ, + STATE(2973), 2, sym_line_comment, sym_block_comment, - ACTIONS(6297), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87264] = 4, + [88033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2936), 2, + STATE(2974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 3, + ACTIONS(4897), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87280] = 4, + [88049] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2937), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5021), 1, + anon_sym_COLON_COLON, + STATE(1997), 1, + sym_type_arguments, + STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(6299), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87296] = 6, + [88069] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6301), 1, - anon_sym_SEMI, - STATE(512), 1, - sym_declaration_list, - STATE(2938), 2, + ACTIONS(6356), 1, + anon_sym_move, + STATE(215), 1, + sym_closure_parameters, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [87316] = 4, + [88089] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2939), 2, + STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 3, + ACTIONS(4901), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87332] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(6303), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(2940), 2, - sym_line_comment, - sym_block_comment, - [87352] = 6, + [88105] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(5689), 1, anon_sym_RPAREN, - ACTIONS(6305), 1, + ACTIONS(5691), 1, anon_sym_COMMA, - STATE(2695), 1, - aux_sym_slice_pattern_repeat1, - STATE(2941), 2, + STATE(3069), 1, + aux_sym_parameters_repeat1, + STATE(2978), 2, sym_line_comment, sym_block_comment, - [87372] = 6, + [88125] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(5665), 1, - sym_identifier, - STATE(3324), 1, - sym_lifetime, - STATE(2942), 2, + ACTIONS(5741), 1, + anon_sym_GT, + ACTIONS(6358), 1, + anon_sym_COMMA, + STATE(2995), 1, + aux_sym_use_bounds_repeat1, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [87392] = 6, + [88145] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6307), 1, - anon_sym_SEMI, - STATE(736), 1, - sym_declaration_list, - STATE(2943), 2, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [87412] = 6, + ACTIONS(6360), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88161] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(6309), 1, + ACTIONS(6362), 1, anon_sym_SEMI, - ACTIONS(6311), 1, + ACTIONS(6364), 1, anon_sym_RBRACK, - STATE(2944), 2, + STATE(2981), 2, sym_line_comment, sym_block_comment, - [87432] = 6, + [88181] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6313), 1, - anon_sym_SEMI, - STATE(515), 1, - sym_declaration_list, - STATE(2945), 2, + STATE(2982), 2, sym_line_comment, sym_block_comment, - [87452] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(6366), 3, anon_sym_PLUS, - ACTIONS(6315), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2946), 2, - sym_line_comment, - sym_block_comment, - [87470] = 6, + anon_sym_STAR, + anon_sym_QMARK, + [88197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, + ACTIONS(3362), 1, anon_sym_LT2, - ACTIONS(4996), 1, + ACTIONS(5017), 1, anon_sym_COLON_COLON, - STATE(1308), 1, + STATE(1106), 1, sym_type_arguments, - STATE(2947), 2, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [87490] = 6, + [88217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(4691), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_trait_bounds, - STATE(2948), 2, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [87510] = 5, + ACTIONS(5595), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88233] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5601), 1, - anon_sym_COLON, - ACTIONS(6317), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2949), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6368), 1, + anon_sym_SEMI, + STATE(3529), 1, + sym_where_clause, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [87528] = 6, + [88253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(6319), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2950), 2, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [87548] = 4, + ACTIONS(4935), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2951), 2, + ACTIONS(3264), 1, + anon_sym_RPAREN, + ACTIONS(6370), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_tuple_type_repeat1, + STATE(2987), 2, sym_line_comment, sym_block_comment, - ACTIONS(6321), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87564] = 6, + [88289] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_RPAREN, - ACTIONS(6323), 1, - anon_sym_COMMA, - STATE(2978), 1, - aux_sym_tuple_type_repeat1, - STATE(2952), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6372), 1, + anon_sym_SEMI, + STATE(669), 1, + sym_declaration_list, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [87584] = 6, + [88309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5585), 1, + ACTIONS(5555), 1, anon_sym_RPAREN, - ACTIONS(5587), 1, + ACTIONS(5557), 1, anon_sym_COMMA, - STATE(2962), 1, + STATE(2994), 1, aux_sym_parameters_repeat1, - STATE(2953), 2, + STATE(2989), 2, sym_line_comment, sym_block_comment, - [87604] = 5, + [88329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6325), 1, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6374), 2, anon_sym_RBRACE, - ACTIONS(6327), 1, anon_sym_COMMA, - STATE(2954), 3, + STATE(2990), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87622] = 6, + [88347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6330), 1, - anon_sym_SEMI, - STATE(536), 1, - sym_declaration_list, - STATE(2955), 2, + ACTIONS(6376), 1, + anon_sym_EQ_GT, + ACTIONS(6378), 1, + anon_sym_PIPE, + ACTIONS(6380), 1, + anon_sym_if, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [87642] = 5, + [88367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6317), 1, - anon_sym_PIPE, - ACTIONS(6332), 1, + ACTIONS(1623), 1, + anon_sym_GT, + ACTIONS(6382), 1, anon_sym_COMMA, - STATE(2956), 3, + STATE(2997), 1, + aux_sym_type_arguments_repeat1, + STATE(2992), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [87660] = 5, + [88387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6337), 1, - anon_sym_EQ, - ACTIONS(6335), 2, - anon_sym_RBRACE, + ACTIONS(1623), 1, + anon_sym_GT, + ACTIONS(6382), 1, anon_sym_COMMA, - STATE(2957), 2, + STATE(3122), 1, + aux_sym_type_arguments_repeat1, + STATE(2993), 2, sym_line_comment, sym_block_comment, - [87678] = 6, + [88407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6339), 1, - anon_sym_SEMI, - STATE(541), 1, - sym_declaration_list, - STATE(2958), 2, + ACTIONS(1405), 1, + anon_sym_RPAREN, + ACTIONS(5667), 1, + anon_sym_COMMA, + STATE(2852), 1, + aux_sym_parameters_repeat1, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [87698] = 6, + [88427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, + ACTIONS(6384), 1, anon_sym_GT, - ACTIONS(6341), 1, + ACTIONS(6386), 1, anon_sym_COMMA, - STATE(2966), 1, - aux_sym_type_arguments_repeat1, - STATE(2959), 2, + STATE(2995), 3, sym_line_comment, sym_block_comment, - [87718] = 6, + aux_sym_use_bounds_repeat1, + [88445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_GT, - ACTIONS(6341), 1, + ACTIONS(1405), 1, + anon_sym_RPAREN, + ACTIONS(5667), 1, anon_sym_COMMA, - STATE(2839), 1, - aux_sym_type_arguments_repeat1, - STATE(2960), 2, + STATE(2998), 1, + aux_sym_parameters_repeat1, + STATE(2996), 2, sym_line_comment, sym_block_comment, - [87738] = 6, + [88465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(4984), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(2961), 2, + ACTIONS(1625), 1, + anon_sym_GT, + ACTIONS(6389), 1, + anon_sym_COMMA, + STATE(3122), 1, + aux_sym_type_arguments_repeat1, + STATE(2997), 2, sym_line_comment, sym_block_comment, - [87758] = 6, + [88485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1391), 1, + ACTIONS(1407), 1, anon_sym_RPAREN, - ACTIONS(5593), 1, + ACTIONS(6391), 1, anon_sym_COMMA, - STATE(2879), 1, + STATE(2852), 1, aux_sym_parameters_repeat1, - STATE(2962), 2, + STATE(2998), 2, sym_line_comment, sym_block_comment, - [87778] = 5, + [88505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6343), 1, - anon_sym_RBRACE, - ACTIONS(6345), 1, + ACTIONS(6393), 1, + anon_sym_GT, + ACTIONS(6395), 1, anon_sym_COMMA, - STATE(2963), 3, + STATE(3001), 1, + aux_sym_use_bounds_repeat1, + STATE(2999), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87796] = 6, + [88525] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1391), 1, - anon_sym_RPAREN, - ACTIONS(5593), 1, + ACTIONS(6397), 1, + anon_sym_GT, + ACTIONS(6399), 1, anon_sym_COMMA, - STATE(2968), 1, - aux_sym_parameters_repeat1, - STATE(2964), 2, + STATE(3002), 1, + aux_sym_use_bounds_repeat1, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [87816] = 4, + [88545] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2965), 2, + ACTIONS(5900), 1, + anon_sym_GT, + ACTIONS(6401), 1, + anon_sym_COMMA, + STATE(2995), 1, + aux_sym_use_bounds_repeat1, + STATE(3001), 2, sym_line_comment, sym_block_comment, - ACTIONS(5560), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87832] = 6, + [88565] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, + ACTIONS(5902), 1, anon_sym_GT, - ACTIONS(6348), 1, + ACTIONS(6403), 1, anon_sym_COMMA, - STATE(2839), 1, - aux_sym_type_arguments_repeat1, - STATE(2966), 2, + STATE(2995), 1, + aux_sym_use_bounds_repeat1, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [87852] = 5, + [88585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6350), 2, - anon_sym_RPAREN, + ACTIONS(5544), 1, + anon_sym_COLON, + ACTIONS(6405), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2967), 2, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [87870] = 6, + [88603] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1395), 1, - anon_sym_RPAREN, - ACTIONS(6352), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2968), 2, + ACTIONS(6407), 1, + anon_sym_move, + STATE(216), 1, + sym_closure_parameters, + STATE(3004), 2, sym_line_comment, sym_block_comment, - [87890] = 6, + [88623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6354), 1, - anon_sym_GT, - ACTIONS(6356), 1, - anon_sym_COMMA, - STATE(2973), 1, - aux_sym_use_bounds_repeat1, - STATE(2969), 2, + STATE(3005), 2, sym_line_comment, sym_block_comment, - [87910] = 6, + ACTIONS(4913), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_GT, - ACTIONS(6360), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_use_bounds_repeat1, - STATE(2970), 2, + STATE(3006), 2, sym_line_comment, sym_block_comment, - [87930] = 6, + ACTIONS(4909), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6362), 1, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(6409), 1, + anon_sym_SEMI, + STATE(1122), 1, + sym_declaration_list, + STATE(3007), 2, + sym_line_comment, + sym_block_comment, + [88675] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6411), 1, anon_sym_RBRACE, - ACTIONS(6364), 1, + ACTIONS(6413), 1, anon_sym_COMMA, - STATE(2950), 1, - aux_sym_struct_pattern_repeat1, - STATE(2971), 2, + STATE(3008), 3, sym_line_comment, sym_block_comment, - [87950] = 6, + aux_sym_use_list_repeat1, + [88693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6366), 1, - anon_sym_SEMI, - ACTIONS(6368), 1, - anon_sym_EQ, - STATE(2972), 2, + ACTIONS(6416), 1, + anon_sym_RBRACE, + ACTIONS(6418), 1, + anon_sym_COMMA, + STATE(3009), 3, sym_line_comment, sym_block_comment, - [87970] = 6, + aux_sym_struct_pattern_repeat1, + [88711] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5803), 1, - anon_sym_GT, - ACTIONS(6370), 1, - anon_sym_COMMA, - STATE(3069), 1, - aux_sym_use_bounds_repeat1, - STATE(2973), 2, + ACTIONS(4072), 1, + anon_sym_LT2, + ACTIONS(4986), 1, + anon_sym_COLON_COLON, + STATE(1631), 1, + sym_type_arguments, + STATE(3010), 2, sym_line_comment, sym_block_comment, - [87990] = 6, + [88731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5805), 1, - anon_sym_GT, - ACTIONS(6372), 1, - anon_sym_COMMA, - STATE(3069), 1, - aux_sym_use_bounds_repeat1, - STATE(2974), 2, + STATE(3011), 2, sym_line_comment, sym_block_comment, - [88010] = 6, + ACTIONS(4803), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - anon_sym_GT, - ACTIONS(5378), 1, + ACTIONS(6421), 1, + anon_sym_RBRACE, + ACTIONS(6423), 1, anon_sym_COMMA, - STATE(2985), 1, - aux_sym_type_parameters_repeat1, - STATE(2975), 2, + STATE(3087), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3012), 2, sym_line_comment, sym_block_comment, - [88030] = 6, + [88767] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6374), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6425), 1, anon_sym_SEMI, - STATE(692), 1, - sym_declaration_list, - STATE(2976), 2, + ACTIONS(6427), 1, + anon_sym_EQ, + STATE(3013), 2, sym_line_comment, sym_block_comment, - [88050] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6376), 1, - anon_sym_move, - STATE(219), 1, - sym_closure_parameters, - STATE(2977), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5015), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [88070] = 5, + [88807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6350), 1, - anon_sym_RPAREN, - ACTIONS(6378), 1, + ACTIONS(4739), 1, + anon_sym_COLON, + ACTIONS(5021), 1, + anon_sym_COLON_COLON, + STATE(2510), 1, + sym_trait_bounds, + STATE(3015), 2, + sym_line_comment, + sym_block_comment, + [88827] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1631), 1, + anon_sym_GT, + ACTIONS(6429), 1, anon_sym_COMMA, - STATE(2978), 3, + STATE(3019), 1, + aux_sym_type_arguments_repeat1, + STATE(3016), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [88088] = 6, + [88847] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(6381), 1, - anon_sym_COLON_COLON, - STATE(1833), 1, - sym_field_initializer_list, - STATE(2979), 2, + ACTIONS(1631), 1, + anon_sym_GT, + ACTIONS(6429), 1, + anon_sym_COMMA, + STATE(3122), 1, + aux_sym_type_arguments_repeat1, + STATE(3017), 2, sym_line_comment, sym_block_comment, - [88108] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88867] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6383), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, - STATE(2980), 2, + ACTIONS(987), 1, + anon_sym_RPAREN, + ACTIONS(6431), 1, + anon_sym_COMMA, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(3018), 2, sym_line_comment, sym_block_comment, - [88128] = 6, + [88887] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4048), 1, - anon_sym_LT2, - ACTIONS(4967), 1, - anon_sym_COLON_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(2981), 2, + ACTIONS(1633), 1, + anon_sym_GT, + ACTIONS(6433), 1, + anon_sym_COMMA, + STATE(3122), 1, + aux_sym_type_arguments_repeat1, + STATE(3019), 2, sym_line_comment, sym_block_comment, - [88148] = 6, + [88907] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6385), 1, - anon_sym_SEMI, - ACTIONS(6387), 1, - anon_sym_EQ, - STATE(2982), 2, + ACTIONS(6435), 1, + sym_identifier, + ACTIONS(6437), 1, + anon_sym_await, + ACTIONS(6439), 1, + sym_integer_literal, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [88168] = 5, + [88927] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6389), 1, - anon_sym_EQ, - ACTIONS(6391), 2, + ACTIONS(6441), 1, anon_sym_GT, + ACTIONS(6443), 1, anon_sym_COMMA, - STATE(2983), 2, + STATE(2959), 1, + aux_sym_use_bounds_repeat1, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [88186] = 6, + [88947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3208), 1, - anon_sym_RPAREN, - ACTIONS(6393), 1, - anon_sym_COMMA, - STATE(2978), 1, - aux_sym_tuple_type_repeat1, - STATE(2984), 2, + STATE(3022), 2, sym_line_comment, sym_block_comment, - [88206] = 6, + ACTIONS(4951), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88963] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_GT, - ACTIONS(6395), 1, - anon_sym_COMMA, - STATE(2815), 1, - aux_sym_type_parameters_repeat1, - STATE(2985), 2, + ACTIONS(6445), 1, + anon_sym_move, + STATE(230), 1, + sym_closure_parameters, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [88226] = 6, + [88983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(6397), 1, - anon_sym_SEMI, - STATE(3443), 1, - sym_where_clause, - STATE(2986), 2, + ACTIONS(6447), 1, + sym_identifier, + ACTIONS(6449), 1, + anon_sym_await, + ACTIONS(6451), 1, + sym_integer_literal, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [88246] = 6, + [89003] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, - anon_sym_RPAREN, - ACTIONS(6401), 1, + ACTIONS(1007), 1, + anon_sym_RBRACK, + ACTIONS(6453), 1, anon_sym_COMMA, - STATE(2994), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2987), 2, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [88266] = 6, + [89023] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_GT, - ACTIONS(6395), 1, + ACTIONS(6455), 1, + anon_sym_RPAREN, + ACTIONS(6457), 1, anon_sym_COMMA, - STATE(2816), 1, - aux_sym_type_parameters_repeat1, - STATE(2988), 2, + STATE(3037), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3026), 2, sym_line_comment, sym_block_comment, - [88286] = 6, + [89043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_GT, - ACTIONS(6403), 1, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6459), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2993), 1, - aux_sym_type_arguments_repeat1, - STATE(2989), 2, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [88306] = 6, + [89061] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_GT, - ACTIONS(6403), 1, + ACTIONS(6459), 1, + anon_sym_RPAREN, + ACTIONS(6461), 1, anon_sym_COMMA, - STATE(2839), 1, - aux_sym_type_arguments_repeat1, - STATE(2990), 2, + STATE(3028), 3, sym_line_comment, sym_block_comment, - [88326] = 5, + aux_sym_tuple_pattern_repeat1, + [89079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6405), 2, - anon_sym_RPAREN, + ACTIONS(6464), 1, + anon_sym_GT, + ACTIONS(6466), 1, anon_sym_COMMA, - STATE(2991), 2, + STATE(2979), 1, + aux_sym_use_bounds_repeat1, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [88344] = 6, + [89099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6407), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6468), 1, anon_sym_SEMI, - STATE(694), 1, - sym_declaration_list, - STATE(2992), 2, + ACTIONS(6470), 1, + anon_sym_RBRACK, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [88364] = 6, + [89119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6409), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6472), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2839), 1, - aux_sym_type_arguments_repeat1, - STATE(2993), 2, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [88384] = 5, + [89137] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6411), 1, - anon_sym_RPAREN, - ACTIONS(6413), 1, + ACTIONS(5383), 1, + anon_sym_GT, + ACTIONS(5385), 1, anon_sym_COMMA, - STATE(2994), 3, + STATE(3093), 1, + aux_sym_type_parameters_repeat1, + STATE(3032), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [88402] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [89157] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6416), 1, - anon_sym_move, - STATE(222), 1, - sym_closure_parameters, - STATE(2995), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6474), 1, + anon_sym_SEMI, + STATE(3445), 1, + sym_where_clause, + STATE(3033), 2, sym_line_comment, sym_block_comment, - [88422] = 5, + [89177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6418), 2, - anon_sym_RBRACE, + ACTIONS(937), 1, + anon_sym_RBRACK, + ACTIONS(4174), 1, anon_sym_COMMA, - STATE(2996), 2, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [88440] = 6, + [89197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5732), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6476), 2, anon_sym_RPAREN, - ACTIONS(5734), 1, anon_sym_COMMA, - STATE(2852), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2997), 2, - sym_line_comment, - sym_block_comment, - [88460] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2998), 2, + STATE(3035), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88476] = 4, + [89215] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2999), 2, + ACTIONS(5771), 1, + anon_sym_RPAREN, + ACTIONS(5773), 1, + anon_sym_COMMA, + STATE(2839), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3036), 2, sym_line_comment, sym_block_comment, - ACTIONS(4877), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88492] = 6, + [89235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(6420), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(3000), 2, + ACTIONS(6478), 1, + anon_sym_RPAREN, + ACTIONS(6480), 1, + anon_sym_COMMA, + STATE(3037), 3, sym_line_comment, sym_block_comment, - [88512] = 4, + aux_sym_ordered_field_declaration_list_repeat1, + [89253] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3001), 2, + ACTIONS(1607), 1, + anon_sym_GT, + ACTIONS(6483), 1, + anon_sym_COMMA, + STATE(3117), 1, + aux_sym_type_arguments_repeat1, + STATE(3038), 2, sym_line_comment, sym_block_comment, - ACTIONS(4905), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88528] = 4, + [89273] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3002), 2, + ACTIONS(1607), 1, + anon_sym_GT, + ACTIONS(6483), 1, + anon_sym_COMMA, + STATE(3122), 1, + aux_sym_type_arguments_repeat1, + STATE(3039), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88544] = 4, + [89293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3003), 2, + STATE(3040), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 3, + ACTIONS(4955), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88560] = 4, + [89309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3004), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6485), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3041), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88576] = 5, + [89327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, - anon_sym_RBRACE, - ACTIONS(6424), 1, + ACTIONS(3088), 1, + anon_sym_RPAREN, + ACTIONS(6487), 1, anon_sym_COMMA, - STATE(3005), 3, + STATE(2759), 1, + aux_sym_slice_pattern_repeat1, + STATE(3042), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [88594] = 6, + [89347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5038), 1, - anon_sym_RBRACE, - ACTIONS(6427), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3006), 2, + ACTIONS(3496), 1, + anon_sym_LBRACE, + ACTIONS(6489), 1, + anon_sym_COLON_COLON, + STATE(1509), 1, + sym_field_initializer_list, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [88614] = 6, + [89367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1413), 1, - anon_sym_RPAREN, - ACTIONS(5480), 1, + ACTIONS(6493), 1, + anon_sym_COLON, + ACTIONS(6491), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(3007), 2, + STATE(3044), 2, sym_line_comment, sym_block_comment, - [88634] = 4, + [89385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3008), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6495), 1, + anon_sym_SEMI, + STATE(594), 1, + sym_declaration_list, + STATE(3045), 2, sym_line_comment, sym_block_comment, - ACTIONS(6429), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88650] = 4, + [89405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3009), 2, + ACTIONS(5254), 1, + anon_sym_RBRACE, + ACTIONS(6497), 1, + anon_sym_COMMA, + STATE(3009), 1, + aux_sym_struct_pattern_repeat1, + STATE(3046), 2, sym_line_comment, sym_block_comment, - ACTIONS(6431), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88666] = 6, + [89425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(3496), 1, anon_sym_LBRACE, - ACTIONS(6433), 1, - anon_sym_SEMI, - STATE(621), 1, - sym_declaration_list, - STATE(3010), 2, + ACTIONS(6499), 1, + anon_sym_COLON_COLON, + STATE(1509), 1, + sym_field_initializer_list, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [88686] = 6, + [89445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(6435), 1, + ACTIONS(6501), 1, anon_sym_SEMI, - STATE(525), 1, + STATE(596), 1, sym_declaration_list, - STATE(3011), 2, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [88706] = 5, + [89465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6437), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3012), 2, + ACTIONS(6503), 1, + anon_sym_LPAREN, + ACTIONS(6505), 1, + anon_sym_LBRACK, + ACTIONS(6507), 1, + anon_sym_LBRACE, + STATE(3049), 2, sym_line_comment, sym_block_comment, - [88724] = 4, + [89485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3013), 2, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6511), 1, + anon_sym_LBRACK, + ACTIONS(6513), 1, + anon_sym_LBRACE, + STATE(3050), 2, sym_line_comment, sym_block_comment, - ACTIONS(6439), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88740] = 4, + [89505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3014), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(4739), 1, + anon_sym_COLON, + STATE(2510), 1, + sym_trait_bounds, + STATE(3051), 2, sym_line_comment, sym_block_comment, - ACTIONS(6441), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [88756] = 6, + [89525] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(6515), 1, anon_sym_LBRACE, - ACTIONS(6443), 1, - anon_sym_SEMI, - STATE(1329), 1, - sym_declaration_list, - STATE(3015), 2, - sym_line_comment, - sym_block_comment, - [88776] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(3016), 2, + STATE(1996), 1, + sym_type_arguments, + STATE(3052), 2, sym_line_comment, sym_block_comment, - ACTIONS(4847), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88792] = 4, + [89545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3017), 2, + ACTIONS(6517), 1, + anon_sym_RBRACE, + ACTIONS(6519), 1, + anon_sym_COMMA, + STATE(3053), 3, sym_line_comment, sym_block_comment, - ACTIONS(4865), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88808] = 6, + aux_sym_field_declaration_list_repeat1, + [89563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1413), 1, + ACTIONS(3090), 1, anon_sym_RPAREN, - ACTIONS(5480), 1, + ACTIONS(6522), 1, anon_sym_COMMA, - STATE(2882), 1, - aux_sym_parameters_repeat1, - STATE(3018), 2, + STATE(2759), 1, + aux_sym_slice_pattern_repeat1, + STATE(3054), 2, sym_line_comment, sym_block_comment, - [88828] = 4, + [89583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3019), 2, + STATE(3055), 2, sym_line_comment, sym_block_comment, - ACTIONS(6445), 3, + ACTIONS(6524), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [88844] = 6, + [89599] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6447), 1, - anon_sym_EQ_GT, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(6451), 1, - anon_sym_if, - STATE(3020), 2, + ACTIONS(5258), 1, + anon_sym_RBRACE, + ACTIONS(6526), 1, + anon_sym_COMMA, + STATE(3009), 1, + aux_sym_struct_pattern_repeat1, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [88864] = 6, + [89619] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_LBRACK, - ACTIONS(6457), 1, - anon_sym_LBRACE, - STATE(3021), 2, + ACTIONS(5064), 1, + anon_sym_RBRACE, + ACTIONS(6528), 1, + anon_sym_COMMA, + STATE(3053), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3057), 2, sym_line_comment, sym_block_comment, - [88884] = 6, + [89639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3441), 1, - anon_sym_LBRACE, - ACTIONS(6459), 1, - anon_sym_COLON_COLON, - STATE(1494), 1, - sym_field_initializer_list, - STATE(3022), 2, + STATE(3058), 2, sym_line_comment, sym_block_comment, - [88904] = 6, + ACTIONS(4959), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_LPAREN, - ACTIONS(6463), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, - anon_sym_LBRACE, - STATE(3023), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6530), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3059), 2, sym_line_comment, sym_block_comment, - [88924] = 6, + [89673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6467), 1, - anon_sym_LPAREN, - ACTIONS(6469), 1, - anon_sym_LBRACK, - ACTIONS(6471), 1, - anon_sym_LBRACE, - STATE(3024), 2, + ACTIONS(4660), 1, + anon_sym_COLON_COLON, + ACTIONS(5408), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [88944] = 6, + [89691] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(6473), 1, - anon_sym_LBRACE, - STATE(1973), 1, - sym_type_arguments, - STATE(3025), 2, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [88964] = 6, + ACTIONS(4961), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6475), 1, - anon_sym_LPAREN, - ACTIONS(6477), 1, - anon_sym_LBRACK, - ACTIONS(6479), 1, - anon_sym_LBRACE, - STATE(3026), 2, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [88984] = 4, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89723] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3027), 2, + STATE(3063), 2, sym_line_comment, sym_block_comment, - ACTIONS(6481), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89000] = 6, + ACTIONS(4875), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6483), 1, - anon_sym_SEMI, - ACTIONS(6485), 1, - anon_sym_EQ, - STATE(3028), 2, + ACTIONS(6405), 1, + anon_sym_PIPE, + ACTIONS(6532), 1, + anon_sym_COMMA, + STATE(3064), 3, sym_line_comment, sym_block_comment, - [89020] = 4, + aux_sym_closure_parameters_repeat1, + [89757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3029), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(991), 3, - anon_sym_COLON, - anon_sym_GT, + ACTIONS(6530), 1, + anon_sym_RPAREN, + ACTIONS(6535), 1, anon_sym_COMMA, - [89036] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_SEMI, - STATE(715), 1, - sym_declaration_list, - STATE(3030), 2, + STATE(3065), 3, sym_line_comment, sym_block_comment, - [89056] = 4, + aux_sym_tuple_type_repeat1, + [89775] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3031), 2, + STATE(3066), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, + ACTIONS(4883), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89072] = 6, + [89791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6491), 1, - anon_sym_await, - ACTIONS(6493), 1, - sym_integer_literal, - STATE(3032), 2, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [89092] = 6, + ACTIONS(4899), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6497), 1, - anon_sym_await, - ACTIONS(6499), 1, - sym_integer_literal, - STATE(3033), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6538), 1, + anon_sym_SEMI, + ACTIONS(6540), 1, + anon_sym_RBRACK, + STATE(3068), 2, sym_line_comment, sym_block_comment, - [89112] = 6, + [89827] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5308), 1, - anon_sym_PLUS, - ACTIONS(6501), 1, - anon_sym_GT, - ACTIONS(6503), 1, - anon_sym_as, - STATE(3034), 2, + ACTIONS(1381), 1, + anon_sym_RPAREN, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2852), 1, + aux_sym_parameters_repeat1, + STATE(3069), 2, sym_line_comment, sym_block_comment, - [89132] = 6, + [89847] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - ACTIONS(6505), 1, - anon_sym_GT, - STATE(3384), 1, - sym_lifetime, - STATE(3035), 2, + ACTIONS(1381), 1, + anon_sym_RPAREN, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [89152] = 6, + [89867] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6507), 1, - anon_sym_RBRACE, - ACTIONS(6509), 1, - anon_sym_COMMA, - STATE(2916), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3036), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(6542), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(3071), 2, sym_line_comment, sym_block_comment, - [89172] = 4, + [89887] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3037), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(6544), 1, + anon_sym_GT, + STATE(3342), 1, + sym_lifetime, + STATE(3072), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 3, - anon_sym_EQ_GT, + [89907] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [89188] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - anon_sym_GT, - ACTIONS(6511), 1, - anon_sym_COMMA, - STATE(2890), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3038), 2, + ACTIONS(6546), 1, + anon_sym_move, + STATE(218), 1, + sym_closure_parameters, + STATE(3073), 2, sym_line_comment, sym_block_comment, - [89208] = 5, + [89927] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6513), 2, - anon_sym_RBRACE, + ACTIONS(6544), 1, + anon_sym_GT, + ACTIONS(6548), 1, anon_sym_COMMA, - STATE(3039), 2, + STATE(2947), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3074), 2, sym_line_comment, sym_block_comment, - [89226] = 6, + [89947] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3441), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(6515), 1, - anon_sym_COLON_COLON, - STATE(1494), 1, - sym_field_initializer_list, - STATE(3040), 2, + ACTIONS(6550), 1, + anon_sym_SEMI, + STATE(707), 1, + sym_declaration_list, + STATE(3075), 2, sym_line_comment, sym_block_comment, - [89246] = 6, + [89967] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_RBRACK, - ACTIONS(4132), 1, - anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(3041), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(6552), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [89266] = 4, + [89987] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3042), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(6554), 1, + anon_sym_COLON_COLON, + STATE(1997), 1, + sym_type_arguments, + STATE(3077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4911), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89282] = 4, + [90007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3043), 2, + STATE(3078), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89298] = 4, + ACTIONS(6556), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [90023] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3044), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + ACTIONS(5731), 1, + sym_identifier, + STATE(3194), 1, + sym_lifetime, + STATE(3079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89314] = 4, + [90043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3045), 2, + ACTIONS(6558), 1, + anon_sym_RBRACE, + ACTIONS(6560), 1, + anon_sym_COMMA, + STATE(2838), 1, + aux_sym_use_list_repeat1, + STATE(3080), 2, sym_line_comment, sym_block_comment, - ACTIONS(4887), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89330] = 4, + [90063] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3046), 2, + ACTIONS(5548), 1, + anon_sym_COMMA, + ACTIONS(6562), 1, + anon_sym_PIPE, + STATE(3064), 1, + aux_sym_closure_parameters_repeat1, + STATE(3081), 2, sym_line_comment, sym_block_comment, - ACTIONS(4895), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89346] = 6, + [90083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5916), 1, - anon_sym_RPAREN, - ACTIONS(5918), 1, - anon_sym_COMMA, - STATE(2801), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3047), 2, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6564), 1, + anon_sym_SEMI, + ACTIONS(6566), 1, + anon_sym_EQ, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [89366] = 6, + [90103] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(6517), 1, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6568), 1, anon_sym_SEMI, - STATE(3688), 1, - sym_where_clause, - STATE(3048), 2, + STATE(740), 1, + sym_declaration_list, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [89386] = 6, + [90123] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(6519), 1, + ACTIONS(6570), 1, anon_sym_SEMI, - STATE(3480), 1, + STATE(3543), 1, sym_where_clause, - STATE(3049), 2, + STATE(3084), 2, sym_line_comment, sym_block_comment, - [89406] = 4, + [90143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3050), 2, + STATE(3085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, + ACTIONS(4957), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89422] = 4, + [90159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3051), 2, + ACTIONS(6574), 1, + anon_sym_EQ, + ACTIONS(6572), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4899), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89438] = 5, + [90177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - anon_sym_AMP_AMP, - ACTIONS(4318), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3052), 2, + ACTIONS(5042), 1, + anon_sym_RBRACE, + ACTIONS(6576), 1, + anon_sym_COMMA, + STATE(2824), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [89456] = 5, + [90197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - anon_sym_AMP_AMP, - ACTIONS(6523), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3053), 2, + ACTIONS(5042), 1, + anon_sym_RBRACE, + ACTIONS(6576), 1, + anon_sym_COMMA, + STATE(2833), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [89474] = 5, + [90217] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6525), 2, - anon_sym_RBRACE, + ACTIONS(5548), 1, anon_sym_COMMA, - STATE(3054), 2, + ACTIONS(6578), 1, + anon_sym_PIPE, + STATE(3081), 1, + aux_sym_closure_parameters_repeat1, + STATE(3089), 2, sym_line_comment, sym_block_comment, - [89492] = 6, + [90237] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6527), 1, - anon_sym_SEMI, - ACTIONS(6529), 1, + ACTIONS(1001), 1, anon_sym_RBRACK, - STATE(3055), 2, + ACTIONS(4254), 1, + anon_sym_COMMA, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(3090), 2, sym_line_comment, sym_block_comment, - [89512] = 6, + [90257] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(6531), 1, - anon_sym_SEMI, - STATE(3669), 1, - sym_where_clause, - STATE(3056), 2, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [89532] = 5, + ACTIONS(6580), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_COLON_COLON, - ACTIONS(6533), 2, - anon_sym_RPAREN, + ACTIONS(6582), 1, + anon_sym_EQ, + ACTIONS(6584), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3057), 2, + STATE(3092), 2, sym_line_comment, sym_block_comment, - [89550] = 4, + [90291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3058), 2, + ACTIONS(4751), 1, + anon_sym_GT, + ACTIONS(6586), 1, + anon_sym_COMMA, + STATE(3108), 1, + aux_sym_type_parameters_repeat1, + STATE(3093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89566] = 5, + [90311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(5934), 2, - anon_sym_RPAREN, + ACTIONS(913), 1, + anon_sym_RBRACK, + ACTIONS(4198), 1, anon_sym_COMMA, - STATE(3059), 2, + STATE(2798), 1, + aux_sym_arguments_repeat1, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [89584] = 6, + [90331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5605), 1, + ACTIONS(4751), 1, + anon_sym_GT, + ACTIONS(6586), 1, anon_sym_COMMA, - ACTIONS(6535), 1, - anon_sym_PIPE, - STATE(2848), 1, - aux_sym_closure_parameters_repeat1, - STATE(3060), 2, + STATE(3111), 1, + aux_sym_type_parameters_repeat1, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [89604] = 6, + [90351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_where, - ACTIONS(6537), 1, - anon_sym_SEMI, - STATE(3523), 1, - sym_where_clause, - STATE(3061), 2, + STATE(3096), 2, sym_line_comment, sym_block_comment, - [89624] = 6, + ACTIONS(6588), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [90367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, - anon_sym_RPAREN, - ACTIONS(6541), 1, - anon_sym_COMMA, - STATE(2994), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3062), 2, + ACTIONS(6590), 1, + anon_sym_LPAREN, + ACTIONS(6592), 1, + anon_sym_LBRACK, + ACTIONS(6594), 1, + anon_sym_LBRACE, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [89644] = 6, + [90387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(6543), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - STATE(3063), 2, + ACTIONS(2722), 1, + anon_sym_RPAREN, + ACTIONS(6596), 1, + anon_sym_COMMA, + STATE(3028), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3098), 2, sym_line_comment, sym_block_comment, - [89664] = 6, + [90407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(6545), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(3064), 2, + ACTIONS(6598), 1, + anon_sym_GT, + ACTIONS(6600), 1, + anon_sym_COMMA, + STATE(2861), 1, + aux_sym_type_parameters_repeat1, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [89684] = 6, + [90427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 1, - anon_sym_GT, - ACTIONS(6547), 1, - anon_sym_COMMA, - STATE(3069), 1, - aux_sym_use_bounds_repeat1, - STATE(3065), 2, + ACTIONS(6602), 1, + anon_sym_LPAREN, + ACTIONS(6604), 1, + anon_sym_LBRACK, + ACTIONS(6606), 1, + anon_sym_LBRACE, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [89704] = 6, + [90447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5944), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6608), 2, anon_sym_GT, - ACTIONS(6549), 1, anon_sym_COMMA, - STATE(3069), 1, - aux_sym_use_bounds_repeat1, - STATE(3066), 2, + STATE(3101), 2, sym_line_comment, sym_block_comment, - [89724] = 4, + [90465] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3067), 2, + STATE(3102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4913), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89740] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(6610), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(3068), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6612), 1, + anon_sym_SEMI, + STATE(729), 1, + sym_declaration_list, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [89760] = 5, + [90501] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - anon_sym_GT, - ACTIONS(6555), 1, - anon_sym_COMMA, - STATE(3069), 3, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(6614), 1, + anon_sym_SEMI, + STATE(1147), 1, + sym_declaration_list, + STATE(3104), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [89778] = 6, + [90521] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1017), 1, - anon_sym_RPAREN, - ACTIONS(6558), 1, + ACTIONS(3094), 1, + anon_sym_RBRACK, + ACTIONS(6616), 1, anon_sym_COMMA, - STATE(2629), 1, - aux_sym_arguments_repeat1, - STATE(3070), 2, + STATE(2759), 1, + aux_sym_slice_pattern_repeat1, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [89798] = 6, + [90541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6560), 1, - anon_sym_SEMI, - STATE(655), 1, - sym_declaration_list, - STATE(3071), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(6618), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [89818] = 4, + [90561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3072), 2, + STATE(3107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, + ACTIONS(4873), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89834] = 4, + [90577] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3073), 2, + ACTIONS(6620), 1, + anon_sym_GT, + ACTIONS(6622), 1, + anon_sym_COMMA, + STATE(3108), 3, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89850] = 4, + aux_sym_type_parameters_repeat1, + [90595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3074), 2, + STATE(3109), 2, sym_line_comment, sym_block_comment, - ACTIONS(6562), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89866] = 6, + ACTIONS(6625), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [90611] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4408), 1, - anon_sym_RBRACE, - ACTIONS(6564), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_use_list_repeat1, - STATE(3075), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6627), 1, + anon_sym_SEMI, + STATE(611), 1, + sym_declaration_list, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [89886] = 4, + [90631] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3076), 2, + ACTIONS(4769), 1, + anon_sym_GT, + ACTIONS(6629), 1, + anon_sym_COMMA, + STATE(3108), 1, + aux_sym_type_parameters_repeat1, + STATE(3111), 2, sym_line_comment, sym_block_comment, - ACTIONS(6566), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89902] = 4, + [90651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3077), 2, + STATE(3112), 2, sym_line_comment, sym_block_comment, - ACTIONS(6568), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(995), 3, + anon_sym_COLON, + anon_sym_GT, anon_sym_COMMA, - [89918] = 4, + [90667] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3078), 2, + STATE(3113), 2, sym_line_comment, sym_block_comment, - ACTIONS(6570), 3, + ACTIONS(6631), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [89934] = 4, + [90683] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3079), 2, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6633), 1, + anon_sym_SEMI, + STATE(3598), 1, + sym_where_clause, + STATE(3114), 2, sym_line_comment, sym_block_comment, - ACTIONS(6572), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89950] = 4, + [90703] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3080), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(5070), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(3115), 2, sym_line_comment, sym_block_comment, - ACTIONS(6574), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89966] = 4, + [90723] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3081), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6576), 3, - anon_sym_SEMI, + ACTIONS(5027), 1, anon_sym_RBRACE, + ACTIONS(6150), 1, anon_sym_COMMA, - [89982] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6578), 1, - anon_sym_SEMI, - STATE(660), 1, - sym_declaration_list, - STATE(3082), 2, + STATE(3053), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3116), 2, sym_line_comment, sym_block_comment, - [90002] = 6, + [90743] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6580), 1, + ACTIONS(1641), 1, anon_sym_GT, - ACTIONS(6582), 1, + ACTIONS(6635), 1, anon_sym_COMMA, - STATE(2818), 1, - aux_sym_type_parameters_repeat1, - STATE(3083), 2, + STATE(3122), 1, + aux_sym_type_arguments_repeat1, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [90022] = 6, + [90763] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(4911), 1, anon_sym_LBRACE, - ACTIONS(6584), 1, - anon_sym_SEMI, - STATE(1363), 1, - sym_declaration_list, - STATE(3084), 2, + STATE(1996), 1, + sym_type_arguments, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [90042] = 6, + [90783] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(5016), 1, + ACTIONS(6637), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(3085), 2, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [90062] = 6, + [90803] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - ACTIONS(6586), 1, + ACTIONS(6639), 1, anon_sym_SEMI, - STATE(672), 1, + STATE(556), 1, sym_declaration_list, - STATE(3086), 2, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [90082] = 6, + [90823] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - ACTIONS(6588), 1, - anon_sym_EQ, - STATE(3654), 1, - sym_type_parameters, - STATE(3087), 2, + ACTIONS(4574), 1, + anon_sym_LT2, + ACTIONS(6641), 1, + anon_sym_for, + STATE(1996), 1, + sym_type_arguments, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [90102] = 6, + [90843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(6590), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(3088), 2, + ACTIONS(5587), 1, + anon_sym_GT, + ACTIONS(6643), 1, + anon_sym_COMMA, + STATE(3122), 3, sym_line_comment, sym_block_comment, - [90122] = 6, + aux_sym_type_arguments_repeat1, + [90861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4984), 1, anon_sym_where, - ACTIONS(6592), 1, + ACTIONS(6646), 1, anon_sym_SEMI, - STATE(3401), 1, + STATE(3451), 1, sym_where_clause, - STATE(3089), 2, + STATE(3123), 2, + sym_line_comment, + sym_block_comment, + [90881] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_where, + ACTIONS(6648), 1, + anon_sym_EQ, + STATE(3704), 1, + sym_where_clause, + STATE(3124), 2, sym_line_comment, sym_block_comment, - [90142] = 6, + [90901] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, + ACTIONS(4574), 1, anon_sym_LT2, - ACTIONS(6594), 1, + ACTIONS(6650), 1, anon_sym_for, - STATE(1973), 1, + STATE(1996), 1, sym_type_arguments, - STATE(3090), 2, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [90162] = 4, + [90921] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3091), 2, + ACTIONS(6652), 1, + anon_sym_RPAREN, + ACTIONS(6654), 1, + anon_sym_COMMA, + STATE(3037), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3126), 2, sym_line_comment, sym_block_comment, - ACTIONS(6596), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90178] = 6, + [90941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(6598), 1, - anon_sym_for, - STATE(1973), 1, - sym_type_arguments, - STATE(3092), 2, + ACTIONS(6658), 1, + anon_sym_COLON, + ACTIONS(6656), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3127), 2, sym_line_comment, sym_block_comment, - [90198] = 6, + [90959] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6600), 1, + ACTIONS(6660), 1, sym_identifier, - ACTIONS(6602), 1, + ACTIONS(6662), 1, anon_sym_ref, - ACTIONS(6604), 1, + ACTIONS(6664), 1, sym_mutable_specifier, - STATE(3093), 2, + STATE(3128), 2, sym_line_comment, sym_block_comment, - [90218] = 6, + [90979] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_RBRACE, - ACTIONS(6606), 1, - anon_sym_COMMA, - STATE(2963), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3094), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + ACTIONS(6666), 1, + anon_sym_SEMI, + STATE(699), 1, + sym_declaration_list, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [90238] = 5, + [90999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6610), 1, - anon_sym_COLON, - ACTIONS(6608), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6668), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3095), 2, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [90256] = 6, + [91017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6612), 1, + STATE(3131), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4943), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91033] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6044), 2, anon_sym_RBRACE, - ACTIONS(6614), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_use_list_repeat1, - STATE(3096), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [90276] = 6, + [91048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_LT2, - ACTIONS(5004), 1, - anon_sym_COLON_COLON, - STATE(1972), 1, - sym_type_arguments, - STATE(3097), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2280), 1, + sym_parameters, + STATE(3133), 2, sym_line_comment, sym_block_comment, - [90296] = 5, + [91065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4318), 1, - anon_sym_EQ_GT, - ACTIONS(6616), 1, - anon_sym_AMP_AMP, - STATE(3098), 2, + anon_sym_SLASH_STAR, + ACTIONS(6670), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [90313] = 5, + [91080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6620), 1, - anon_sym_RBRACE, - STATE(3099), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2019), 1, + sym_parameters, + STATE(3135), 2, sym_line_comment, sym_block_comment, - [90330] = 5, + [91097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6622), 1, - anon_sym_RBRACE, - STATE(3100), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym_declaration_list, + STATE(3136), 2, sym_line_comment, sym_block_comment, - [90347] = 5, + [91114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, + ACTIONS(5609), 1, sym_super, - ACTIONS(6624), 1, + ACTIONS(6672), 1, sym_identifier, - STATE(3101), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [90364] = 5, + [91131] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6626), 1, - anon_sym_LPAREN, - ACTIONS(6628), 1, - anon_sym_COLON_COLON, - STATE(3102), 2, + ACTIONS(6416), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [90381] = 5, + [91146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - sym_identifier, - ACTIONS(6632), 1, - sym_super, - STATE(3103), 2, + ACTIONS(3354), 1, + anon_sym_LPAREN, + STATE(1178), 1, + sym_parameters, + STATE(3139), 2, sym_line_comment, sym_block_comment, - [90398] = 5, + [91163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_PLUS, - ACTIONS(6634), 1, - anon_sym_GT, - STATE(3104), 2, + ACTIONS(6674), 1, + sym_identifier, + ACTIONS(6676), 1, + sym_super, + STATE(3140), 2, sym_line_comment, sym_block_comment, - [90415] = 5, + [91180] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(245), 1, + STATE(215), 1, sym_closure_parameters, - STATE(3105), 2, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [90432] = 4, + [91197] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3274), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3106), 2, + STATE(246), 1, + sym_closure_parameters, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [90447] = 5, + [91214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - STATE(731), 1, + STATE(543), 1, sym_declaration_list, - STATE(3107), 2, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [90464] = 4, + [91231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6107), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3108), 2, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(4861), 1, + anon_sym_BANG, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [90479] = 5, + [91248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6636), 1, - sym_identifier, - ACTIONS(6638), 1, - sym_mutable_specifier, - STATE(3109), 2, + ACTIONS(4104), 1, + anon_sym_LBRACE, + STATE(1811), 1, + sym_field_initializer_list, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [90496] = 5, + [91265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6640), 1, + ACTIONS(6678), 1, sym_identifier, - ACTIONS(6642), 1, + ACTIONS(6680), 1, sym_super, - STATE(3110), 2, + STATE(3146), 2, sym_line_comment, sym_block_comment, - [90513] = 4, + [91282] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6644), 2, + ACTIONS(6682), 2, anon_sym_const, sym_mutable_specifier, - STATE(3111), 2, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [90528] = 5, + [91297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_super, - ACTIONS(6646), 1, + ACTIONS(6684), 1, sym_identifier, - STATE(3112), 2, - sym_line_comment, - sym_block_comment, - [90545] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6648), 1, - anon_sym_EQ, - STATE(3113), 2, + STATE(3148), 2, sym_line_comment, sym_block_comment, - [90562] = 4, + [91314] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6650), 2, + ACTIONS(6686), 2, anon_sym_const, sym_mutable_specifier, - STATE(3114), 2, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [90577] = 5, + [91329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, + ACTIONS(4066), 1, anon_sym_LPAREN, - STATE(1606), 1, + STATE(1651), 1, sym_parameters, - STATE(3115), 2, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [90594] = 5, + [91346] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_LT, - STATE(954), 1, - sym_type_parameters, - STATE(3116), 2, + ACTIONS(6688), 1, + sym_identifier, + ACTIONS(6690), 1, + sym_super, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [90611] = 5, + [91363] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(3117), 2, + STATE(222), 1, + sym_closure_parameters, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [90628] = 5, + [91380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(1996), 1, - sym_parameters, - STATE(3118), 2, + ACTIONS(5375), 1, + anon_sym_LBRACE, + STATE(644), 1, + sym_enum_variant_list, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [90645] = 5, + [91397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(5308), 1, - anon_sym_PLUS, - STATE(3119), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6692), 1, + anon_sym_EQ, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [90662] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(237), 1, - sym_closure_parameters, - STATE(3120), 2, + ACTIONS(5389), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_enum_variant_list, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [90679] = 5, + [91431] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3932), 1, - anon_sym_COLON, - ACTIONS(5308), 1, - anon_sym_PLUS, - STATE(3121), 2, + ACTIONS(6405), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [90696] = 5, + [91446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(6303), 1, - anon_sym_for, - STATE(3122), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_declaration_list, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [90713] = 5, + [91463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, + ACTIONS(5868), 1, sym_identifier, - ACTIONS(5764), 1, + ACTIONS(5870), 1, sym_super, - STATE(3123), 2, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [90730] = 4, + [91480] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5772), 2, + ACTIONS(5802), 2, sym_identifier, sym_super, - STATE(3124), 2, + STATE(3159), 2, sym_line_comment, sym_block_comment, - [90745] = 5, + [91495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6652), 1, + ACTIONS(6694), 1, sym_identifier, - ACTIONS(6654), 1, + ACTIONS(6696), 1, sym_super, - STATE(3125), 2, + STATE(3160), 2, sym_line_comment, sym_block_comment, - [90762] = 5, + [91512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_COLON, - STATE(3126), 2, + ACTIONS(5609), 1, + sym_super, + ACTIONS(6698), 1, + sym_identifier, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [90779] = 5, + [91529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6624), 1, + ACTIONS(6672), 1, sym_identifier, - ACTIONS(6656), 1, + ACTIONS(6700), 1, sym_super, - STATE(3127), 2, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [90796] = 4, + [91546] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6658), 2, - sym_identifier, - sym_metavariable, - STATE(3128), 2, + ACTIONS(6702), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3163), 2, sym_line_comment, sym_block_comment, - [90811] = 5, + [91561] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5178), 1, + ACTIONS(5302), 1, sym_super, - ACTIONS(5701), 1, + ACTIONS(5713), 1, sym_identifier, - STATE(3129), 2, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [90828] = 5, + [91578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6660), 1, + ACTIONS(6704), 1, sym_identifier, - ACTIONS(6662), 1, + ACTIONS(6706), 1, sym_super, - STATE(3130), 2, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [90845] = 5, + [91595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - STATE(2811), 1, - sym_lifetime, - STATE(3131), 2, + ACTIONS(6708), 1, + anon_sym_LBRACK, + ACTIONS(6710), 1, + anon_sym_BANG, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [90862] = 5, + [91612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6664), 1, - anon_sym_RBRACE, - STATE(3132), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(625), 1, + sym_declaration_list, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [90879] = 5, + [91629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_declaration_list, - STATE(3133), 2, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4791), 1, + anon_sym_COLON_COLON, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [90896] = 4, + [91646] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 2, - sym_identifier, + ACTIONS(6712), 2, + sym_float_literal, + sym_integer_literal, + STATE(3169), 2, + sym_line_comment, + sym_block_comment, + [91661] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5609), 1, sym_super, - STATE(3134), 2, + ACTIONS(6714), 1, + sym_identifier, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [90911] = 5, + [91678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6668), 1, + ACTIONS(6716), 1, anon_sym_LT, - STATE(912), 1, + STATE(940), 1, sym_type_parameters, - STATE(3135), 2, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [90928] = 5, + [91695] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, + ACTIONS(6684), 1, + sym_identifier, + ACTIONS(6690), 1, + sym_super, + STATE(3172), 2, + sym_line_comment, + sym_block_comment, + [91712] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4066), 1, anon_sym_LPAREN, - STATE(1614), 1, + STATE(1681), 1, sym_parameters, - STATE(3136), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - [90945] = 4, + [91729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6317), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3137), 2, + ACTIONS(6718), 1, + anon_sym_SEMI, + ACTIONS(6720), 1, + anon_sym_as, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [90960] = 4, + [91746] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6670), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3138), 2, + ACTIONS(6722), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3175), 2, sym_line_comment, sym_block_comment, - [90975] = 5, + [91761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_trait_bounds, - STATE(3139), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6724), 1, + anon_sym_in, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [90992] = 5, + [91778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(3496), 1, anon_sym_LBRACE, - STATE(737), 1, - sym_declaration_list, - STATE(3140), 2, + STATE(1509), 1, + sym_field_initializer_list, + STATE(3177), 2, + sym_line_comment, + sym_block_comment, + [91795] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_field_declaration_list, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [91009] = 4, + [91812] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 2, + ACTIONS(6726), 2, sym_identifier, sym_super, - STATE(3141), 2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [91024] = 5, + [91827] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6674), 1, - anon_sym_SEMI, - ACTIONS(6676), 1, - anon_sym_as, - STATE(3142), 2, + ACTIONS(6411), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [91041] = 5, + [91842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(738), 1, - sym_declaration_list, - STATE(3143), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2249), 1, + sym_parameters, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [91058] = 4, + [91859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6046), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3144), 2, + ACTIONS(6728), 1, + anon_sym_SEMI, + ACTIONS(6730), 1, + anon_sym_as, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [91073] = 4, + [91876] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6325), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3145), 2, + ACTIONS(6732), 2, + sym_identifier, + sym_metavariable, + STATE(3183), 2, sym_line_comment, sym_block_comment, - [91088] = 5, + [91891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6668), 1, - anon_sym_LT, - STATE(1066), 1, - sym_type_parameters, - STATE(3146), 2, + ACTIONS(3318), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3184), 2, sym_line_comment, sym_block_comment, - [91105] = 5, + [91906] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3788), 1, - anon_sym_COLON, - ACTIONS(5308), 1, - anon_sym_PLUS, - STATE(3147), 2, + ACTIONS(6734), 2, + sym_identifier, + sym_super, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [91122] = 5, + [91921] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 1, + ACTIONS(3354), 1, anon_sym_LPAREN, - STATE(1619), 1, + STATE(1111), 1, sym_parameters, - STATE(3148), 2, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [91139] = 5, + [91938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LBRACE, - STATE(606), 1, - sym_enum_variant_list, - STATE(3149), 2, + ACTIONS(4066), 1, + anon_sym_LPAREN, + STATE(1629), 1, + sym_parameters, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [91156] = 5, + [91955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 1, - sym_super, - ACTIONS(6678), 1, - sym_identifier, - STATE(3150), 2, + ACTIONS(6736), 1, + anon_sym_RPAREN, + ACTIONS(6738), 1, + anon_sym_COLON_COLON, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [91173] = 5, + [91972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - STATE(1086), 1, - sym_parameters, - STATE(3151), 2, + ACTIONS(3868), 1, + anon_sym_COLON, + ACTIONS(5360), 1, + anon_sym_PLUS, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [91190] = 5, + [91989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(4984), 1, - anon_sym_for, - STATE(3152), 2, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(761), 1, + sym_field_declaration_list, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [91207] = 4, + [92006] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6343), 2, - anon_sym_RBRACE, + ACTIONS(6740), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3153), 2, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [91222] = 4, + [92021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6680), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3154), 2, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(759), 1, + sym_field_declaration_list, + STATE(3192), 2, sym_line_comment, sym_block_comment, - [91237] = 4, + [92038] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 2, - sym_float_literal, - sym_integer_literal, - STATE(3155), 2, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [91252] = 5, + [92055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3441), 1, - anon_sym_LBRACE, - STATE(1494), 1, - sym_field_initializer_list, - STATE(3156), 2, + ACTIONS(6384), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [91269] = 5, + [92070] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym_enum_variant_list, - STATE(3157), 2, + ACTIONS(6742), 2, + sym_float_literal, + sym_integer_literal, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [91286] = 5, + [92085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5222), 1, - anon_sym_RBRACE, - ACTIONS(6618), 1, + ACTIONS(6744), 1, anon_sym_SEMI, - STATE(3158), 2, + ACTIONS(6746), 1, + anon_sym_RPAREN, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [91303] = 5, + [92102] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5240), 1, + ACTIONS(6168), 2, anon_sym_RBRACE, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3159), 2, + anon_sym_COMMA, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [91320] = 5, + [92117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, - sym_identifier, - ACTIONS(6686), 1, - sym_super, - STATE(3160), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(720), 1, + sym_declaration_list, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [91337] = 5, + [92134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6668), 1, - anon_sym_LT, - STATE(878), 1, - sym_type_parameters, - STATE(3161), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6746), 1, + anon_sym_RBRACK, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [91354] = 5, + [92151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_enum_variant_list, - STATE(3162), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6748), 1, + anon_sym_RBRACE, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [91371] = 5, + [92168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, + ACTIONS(5609), 1, sym_super, - ACTIONS(6688), 1, + ACTIONS(6750), 1, sym_identifier, - STATE(3163), 2, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [91388] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, - STATE(3164), 2, + ACTIONS(6752), 1, + anon_sym_RPAREN, + ACTIONS(6754), 1, + anon_sym_COLON_COLON, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [91405] = 5, + [92202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, + ACTIONS(5609), 1, sym_super, - ACTIONS(6690), 1, + ACTIONS(6756), 1, sym_identifier, - STATE(3165), 2, + STATE(3203), 2, + sym_line_comment, + sym_block_comment, + [92219] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4406), 1, + anon_sym_EQ_GT, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [91422] = 5, + [92236] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(219), 1, + STATE(216), 1, sym_closure_parameters, - STATE(3166), 2, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [91439] = 5, + [92253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4701), 1, - anon_sym_BANG, - ACTIONS(4797), 1, - anon_sym_COLON_COLON, - STATE(3167), 2, + ACTIONS(6342), 1, + anon_sym_EQ_GT, + ACTIONS(6758), 1, + anon_sym_AMP_AMP, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [91456] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, - STATE(3168), 2, + ACTIONS(6716), 1, + anon_sym_LT, + STATE(1085), 1, + sym_type_parameters, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [91473] = 4, + [92287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6692), 2, + ACTIONS(6760), 2, anon_sym_const, sym_mutable_specifier, - STATE(3169), 2, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [91488] = 5, + [92302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_super, - ACTIONS(6684), 1, + ACTIONS(6688), 1, sym_identifier, - STATE(3170), 2, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [91505] = 5, + [92319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - STATE(673), 1, - sym_field_declaration_list, - STATE(3171), 2, + STATE(762), 1, + sym_declaration_list, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [91522] = 5, + [92336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1163), 1, - sym_declaration_list, - STATE(3172), 2, + ACTIONS(6738), 1, + anon_sym_COLON_COLON, + ACTIONS(6762), 1, + anon_sym_RPAREN, + STATE(3211), 2, + sym_line_comment, + sym_block_comment, + [92353] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + anon_sym_COLON_COLON, + ACTIONS(6764), 1, + anon_sym_RPAREN, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [91539] = 4, + [92370] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5178), 2, - sym_identifier, - sym_super, - STATE(3173), 2, + STATE(224), 1, + sym_closure_parameters, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [91554] = 5, + [92387] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(220), 1, + STATE(238), 1, sym_closure_parameters, - STATE(3174), 2, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [91571] = 5, + [92404] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - STATE(1833), 1, - sym_field_initializer_list, - STATE(3175), 2, + ACTIONS(6028), 2, + sym_identifier, + sym_super, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [91588] = 4, + [92419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 2, - sym_identifier, - sym_super, - STATE(3176), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1253), 1, + sym_declaration_list, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [91603] = 5, + [92436] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - sym_super, - ACTIONS(6694), 1, + ACTIONS(5870), 2, sym_identifier, - STATE(3177), 2, + sym_super, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [91620] = 5, + [92451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5728), 1, - sym_identifier, - STATE(3178), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_declaration_list, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [91637] = 5, + [92468] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 1, + ACTIONS(6700), 1, sym_super, - ACTIONS(6678), 1, + ACTIONS(6766), 1, sym_identifier, - STATE(3179), 2, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [91654] = 4, + [92485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6696), 2, - sym_identifier, - sym_metavariable, - STATE(3180), 2, + ACTIONS(6752), 1, + anon_sym_RPAREN, + ACTIONS(6768), 1, + anon_sym_COLON_COLON, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [91669] = 5, + [92502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 1, + ACTIONS(5302), 1, sym_super, - ACTIONS(6698), 1, + ACTIONS(5880), 1, sym_identifier, - STATE(3181), 2, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [91686] = 5, + [92519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, - anon_sym_RBRACE, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3182), 2, + ACTIONS(6706), 1, + sym_super, + ACTIONS(6770), 1, + sym_identifier, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [91703] = 4, + [92536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6700), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3183), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(733), 1, + sym_declaration_list, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [91718] = 5, + [92553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1169), 1, - sym_declaration_list, - STATE(3184), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6772), 1, + anon_sym_RPAREN, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [91735] = 4, + [92570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6702), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3185), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6772), 1, + anon_sym_RBRACK, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [91750] = 5, + [92587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1170), 1, - sym_declaration_list, - STATE(3186), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6774), 1, + anon_sym_RBRACE, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [91767] = 4, + [92604] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 2, - anon_sym_RBRACE, + ACTIONS(5727), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3187), 2, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [91782] = 4, + [92619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6706), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3188), 2, + ACTIONS(6752), 1, + anon_sym_RPAREN, + ACTIONS(6776), 1, + anon_sym_COLON_COLON, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [91797] = 5, + [92636] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, - sym_super, - ACTIONS(6708), 1, - sym_identifier, - STATE(3189), 2, + ACTIONS(6778), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [91814] = 4, + [92651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6710), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3190), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(5015), 1, + anon_sym_for, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [91829] = 5, + [92668] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_field_declaration_list, - STATE(3191), 2, + ACTIONS(6764), 1, + anon_sym_RPAREN, + ACTIONS(6768), 1, + anon_sym_COLON_COLON, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [91846] = 4, + [92685] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5691), 2, - anon_sym_RPAREN, + ACTIONS(6780), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3192), 2, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [91861] = 5, + [92700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1375), 1, - sym_field_declaration_list, - STATE(3193), 2, + STATE(1260), 1, + sym_declaration_list, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [91878] = 5, + [92717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1178), 1, - sym_enum_variant_list, - STATE(3194), 2, + STATE(1261), 1, + sym_declaration_list, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [91895] = 4, + [92734] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6712), 2, - sym_float_literal, - sym_integer_literal, - STATE(3195), 2, + ACTIONS(6764), 1, + anon_sym_RPAREN, + ACTIONS(6776), 1, + anon_sym_COLON_COLON, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [91910] = 5, + [92751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6646), 1, + ACTIONS(6782), 1, sym_identifier, - ACTIONS(6686), 1, - sym_super, - STATE(3196), 2, + ACTIONS(6784), 1, + sym_mutable_specifier, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [91927] = 5, + [92768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym_field_declaration_list, - STATE(3197), 2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5769), 1, + sym_identifier, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [91944] = 5, + [92785] = 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(230), 1, sym_closure_parameters, - STATE(3198), 2, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [91961] = 5, + [92802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(5375), 1, anon_sym_LBRACE, - STATE(1181), 1, - sym_field_declaration_list, - STATE(3199), 2, + STATE(727), 1, + sym_enum_variant_list, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [91978] = 4, + [92819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6714), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3200), 2, + ACTIONS(5389), 1, + anon_sym_LBRACE, + STATE(1269), 1, + sym_enum_variant_list, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [91993] = 5, + [92836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6686), 1, + ACTIONS(6690), 1, sym_super, - ACTIONS(6716), 1, + ACTIONS(6786), 1, sym_identifier, - STATE(3201), 2, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [92010] = 5, + [92853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_LBRACE, - STATE(1183), 1, - sym_field_declaration_list, - STATE(3202), 2, + ACTIONS(5701), 2, + sym_identifier, + sym_super, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [92027] = 5, + [92868] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(223), 1, + STATE(232), 1, sym_closure_parameters, - STATE(3203), 2, - sym_line_comment, - sym_block_comment, - [92044] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(6420), 1, - anon_sym_for, - STATE(3204), 2, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [92061] = 5, + [92885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_identifier, - ACTIONS(6720), 1, + ACTIONS(6706), 1, sym_super, - STATE(3205), 2, - sym_line_comment, - sym_block_comment, - [92078] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - STATE(754), 1, - sym_field_declaration_list, - STATE(3206), 2, + ACTIONS(6788), 1, + sym_identifier, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [92095] = 5, + [92902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, + ACTIONS(6734), 1, sym_super, - ACTIONS(5823), 1, + ACTIONS(6790), 1, sym_identifier, - STATE(3207), 2, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [92112] = 5, + [92919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 1, + ACTIONS(5302), 1, sym_super, - ACTIONS(6722), 1, + ACTIONS(5753), 1, sym_identifier, - STATE(3208), 2, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [92129] = 5, + [92936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - STATE(1315), 1, - sym_parameters, - STATE(3209), 2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5920), 1, + sym_identifier, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [92146] = 5, + [92953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3764), 1, - anon_sym_COLON, - ACTIONS(5308), 1, - anon_sym_PLUS, - STATE(3210), 2, + ACTIONS(6792), 1, + sym_identifier, + ACTIONS(6794), 1, + sym_super, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [92163] = 5, + [92970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(1978), 1, - sym_parameters, - STATE(3211), 2, + ACTIONS(4072), 1, + anon_sym_LT2, + STATE(1862), 1, + sym_type_arguments, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [92180] = 4, + [92987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3212), 2, + ACTIONS(6796), 2, + sym_identifier, + sym_metavariable, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [92195] = 5, + [93002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - STATE(1184), 1, - sym_declaration_list, - STATE(3213), 2, + STATE(1272), 1, + sym_field_declaration_list, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [92212] = 5, + [93019] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, - sym_super, - ACTIONS(6724), 1, - sym_identifier, - STATE(3214), 2, + ACTIONS(6459), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [92229] = 5, + [93034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 1, - anon_sym_RPAREN, - ACTIONS(6728), 1, - anon_sym_COLON_COLON, - STATE(3215), 2, + ACTIONS(4980), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym_field_declaration_list, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [92246] = 5, + [93051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(755), 1, + STATE(1275), 1, sym_declaration_list, - STATE(3216), 2, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [92263] = 5, + [93068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 1, - anon_sym_RPAREN, - ACTIONS(6732), 1, - anon_sym_COLON_COLON, - STATE(3217), 2, + ACTIONS(6798), 1, + anon_sym_SEMI, + ACTIONS(6800), 1, + anon_sym_EQ, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [92280] = 5, + [93085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6734), 1, - anon_sym_in, - STATE(3218), 2, + ACTIONS(6690), 1, + sym_super, + ACTIONS(6802), 1, + sym_identifier, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [92297] = 5, + [93102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6686), 1, - sym_super, - ACTIONS(6736), 1, - sym_identifier, - STATE(3219), 2, + ACTIONS(4980), 1, + anon_sym_LBRACE, + STATE(1199), 1, + sym_field_declaration_list, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [92314] = 4, + [93119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3220), 2, + ACTIONS(6700), 1, + sym_super, + ACTIONS(6804), 1, + sym_identifier, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [92329] = 5, + [93136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, + ACTIONS(5701), 1, sym_super, - ACTIONS(6740), 1, + ACTIONS(5779), 1, sym_identifier, - STATE(3221), 2, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [92346] = 5, + [93153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, + ACTIONS(6794), 1, sym_super, - ACTIONS(5960), 1, + ACTIONS(6806), 1, sym_identifier, - STATE(3222), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [92363] = 5, + [93170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 1, + ACTIONS(6028), 1, sym_super, - ACTIONS(6742), 1, + ACTIONS(6808), 1, sym_identifier, - STATE(3223), 2, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [92380] = 5, + [93187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 1, - anon_sym_RPAREN, - ACTIONS(6744), 1, - anon_sym_COLON_COLON, - STATE(3224), 2, + ACTIONS(5302), 2, + sym_identifier, + sym_super, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [92397] = 5, + [93202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 1, - anon_sym_RPAREN, - ACTIONS(6746), 1, - anon_sym_COLON_COLON, - STATE(3225), 2, + ACTIONS(6716), 1, + anon_sym_LT, + STATE(898), 1, + sym_type_parameters, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [92414] = 4, + [93219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 2, + ACTIONS(5408), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3226), 2, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [92429] = 5, + [93234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 1, - anon_sym_EQ_GT, - ACTIONS(6616), 1, - anon_sym_AMP_AMP, - STATE(3227), 2, + ACTIONS(6517), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [92446] = 5, + [93249] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_STAR_SLASH, - ACTIONS(6750), 1, + ACTIONS(6810), 2, sym__block_comment_content, - STATE(3228), 2, - sym_line_comment, - sym_block_comment, - [92463] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6752), 1, - anon_sym_in, - STATE(3229), 2, - sym_line_comment, - sym_block_comment, - [92480] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6754), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3230), 2, + anon_sym_STAR_SLASH, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [92495] = 5, + [93264] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(6812), 1, sym_identifier, - ACTIONS(6758), 1, - sym_super, - STATE(3231), 2, - sym_line_comment, - sym_block_comment, - [92512] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6656), 1, + ACTIONS(6814), 1, sym_super, - ACTIONS(6760), 1, - sym_identifier, - STATE(3232), 2, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [92529] = 5, + [93281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - sym_identifier, - ACTIONS(5772), 1, - sym_super, - STATE(3233), 2, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(882), 1, + sym_type_parameters, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [92546] = 5, + [93298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6700), 1, sym_super, - ACTIONS(6762), 1, + ACTIONS(6816), 1, sym_identifier, - STATE(3234), 2, - sym_line_comment, - sym_block_comment, - [92563] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(242), 1, - sym_closure_parameters, - STATE(3235), 2, - sym_line_comment, - sym_block_comment, - [92580] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(1997), 1, - sym_parameters, - STATE(3236), 2, - sym_line_comment, - sym_block_comment, - [92597] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(2232), 1, - sym_parameters, - STATE(3237), 2, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [92614] = 5, + [93315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, + ACTIONS(5802), 1, sym_super, - ACTIONS(6716), 1, + ACTIONS(5872), 1, sym_identifier, - STATE(3238), 2, + STATE(3270), 2, sym_line_comment, sym_block_comment, - [92631] = 5, + [93332] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, + ACTIONS(6726), 1, sym_super, - ACTIONS(6688), 1, + ACTIONS(6818), 1, sym_identifier, - STATE(3239), 2, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [92648] = 5, + [93349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5178), 1, + ACTIONS(6700), 1, sym_super, - ACTIONS(5823), 1, + ACTIONS(6750), 1, sym_identifier, - STATE(3240), 2, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [92665] = 5, + [93366] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 1, - sym_super, - ACTIONS(6722), 1, - sym_identifier, - STATE(3241), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1200), 1, + sym_declaration_list, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [92682] = 5, + [93383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6686), 1, - sym_super, - ACTIONS(6764), 1, + ACTIONS(6814), 2, sym_identifier, - STATE(3242), 2, + sym_super, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [92699] = 5, + [93398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, - sym_super, - ACTIONS(5821), 1, - sym_identifier, - STATE(3243), 2, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(647), 1, + sym_field_declaration_list, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [92716] = 5, + [93415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 1, + ACTIONS(6028), 1, sym_super, - ACTIONS(6766), 1, + ACTIONS(6786), 1, sym_identifier, - STATE(3244), 2, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [92733] = 5, + [93432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6686), 1, + ACTIONS(6700), 1, sym_super, - ACTIONS(6768), 1, + ACTIONS(6756), 1, sym_identifier, - STATE(3245), 2, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [92750] = 5, + [93449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, + ACTIONS(5302), 1, sym_super, - ACTIONS(5851), 1, + ACTIONS(5920), 1, sym_identifier, - STATE(3246), 2, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [92767] = 5, + [93466] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 1, + ACTIONS(6706), 1, sym_super, - ACTIONS(6770), 1, + ACTIONS(6792), 1, sym_identifier, - STATE(3247), 2, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [92784] = 5, + [93483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6686), 1, + ACTIONS(6690), 1, sym_super, - ACTIONS(6772), 1, + ACTIONS(6820), 1, sym_identifier, - STATE(3248), 2, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [92801] = 5, + [93500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, + ACTIONS(5701), 1, sym_super, - ACTIONS(5865), 1, + ACTIONS(5918), 1, sym_identifier, - STATE(3249), 2, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [92818] = 5, + [93517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 1, + ACTIONS(6794), 1, sym_super, - ACTIONS(6774), 1, + ACTIONS(6822), 1, sym_identifier, - STATE(3250), 2, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [92835] = 5, + [93534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, + ACTIONS(6690), 1, sym_super, - ACTIONS(6772), 1, + ACTIONS(6824), 1, sym_identifier, - STATE(3251), 2, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [92852] = 5, + [93551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5178), 1, + ACTIONS(5701), 1, sym_super, - ACTIONS(5865), 1, + ACTIONS(5934), 1, sym_identifier, - STATE(3252), 2, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [92869] = 5, + [93568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 1, + ACTIONS(6794), 1, sym_super, - ACTIONS(6774), 1, + ACTIONS(6826), 1, sym_identifier, - STATE(3253), 2, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [92886] = 5, + [93585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(2239), 1, - sym_parameters, - STATE(3254), 2, + ACTIONS(6690), 1, + sym_super, + ACTIONS(6828), 1, + sym_identifier, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [92903] = 5, + [93602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(584), 1, - sym_declaration_list, - STATE(3255), 2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5947), 1, + sym_identifier, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [92920] = 5, + [93619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6728), 1, - anon_sym_COLON_COLON, - ACTIONS(6776), 1, - anon_sym_RPAREN, - STATE(3256), 2, + ACTIONS(6794), 1, + sym_super, + ACTIONS(6830), 1, + sym_identifier, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [92937] = 5, + [93636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5224), 1, - anon_sym_RPAREN, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3257), 2, + ACTIONS(6028), 1, + sym_super, + ACTIONS(6828), 1, + sym_identifier, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [92954] = 5, + [93653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_field_declaration_list, - STATE(3258), 2, + ACTIONS(5302), 1, + sym_super, + ACTIONS(5947), 1, + sym_identifier, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [92971] = 5, + [93670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, - anon_sym_COLON_COLON, - ACTIONS(6778), 1, - anon_sym_RPAREN, - STATE(3259), 2, + ACTIONS(6706), 1, + sym_super, + ACTIONS(6830), 1, + sym_identifier, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [92988] = 5, + [93687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6744), 1, - anon_sym_COLON_COLON, - ACTIONS(6778), 1, - anon_sym_RPAREN, - STATE(3260), 2, + ACTIONS(6028), 1, + sym_super, + ACTIONS(6832), 1, + sym_identifier, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [93005] = 5, + [93704] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6626), 1, - anon_sym_LPAREN, - ACTIONS(6780), 1, - anon_sym_COLON_COLON, - STATE(3261), 2, + ACTIONS(3728), 1, + anon_sym_COLON, + ACTIONS(5360), 1, + anon_sym_PLUS, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [93022] = 5, + [93721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_COLON_COLON, - ACTIONS(6778), 1, - anon_sym_RPAREN, - STATE(3262), 2, + ACTIONS(3732), 1, + anon_sym_COLON, + ACTIONS(5360), 1, + anon_sym_PLUS, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [93039] = 5, + [93738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_declaration_list, - STATE(3263), 2, + ACTIONS(5084), 1, + anon_sym_COLON, + STATE(2510), 1, + sym_trait_bounds, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [93056] = 4, + [93755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6782), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3264), 2, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(6834), 1, + anon_sym_COLON_COLON, + STATE(3296), 2, sym_line_comment, sym_block_comment, - [93071] = 5, + [93772] = 5, 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_as, - STATE(3265), 2, + ACTIONS(6706), 1, + sym_super, + ACTIONS(6836), 1, + sym_identifier, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [93088] = 5, + [93789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 1, - anon_sym_BANG, - ACTIONS(6790), 1, - anon_sym_COLON_COLON, - STATE(3266), 2, + ACTIONS(6838), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [93105] = 5, + [93804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5005), 1, anon_sym_LBRACE, - STATE(1109), 1, + STATE(732), 1, sym_declaration_list, - STATE(3267), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [93122] = 5, + [93821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_enum_variant_list, - STATE(3268), 2, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6842), 1, + anon_sym_COLON_COLON, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [93139] = 4, + [93838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5202), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3269), 2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5713), 1, + sym_identifier, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [93154] = 5, + [93855] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_identifier, - ACTIONS(6794), 1, + ACTIONS(6844), 2, + anon_sym_const, sym_mutable_specifier, - STATE(3270), 2, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [93171] = 5, + [93870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5178), 1, - sym_super, - ACTIONS(5870), 1, - sym_identifier, - STATE(3271), 2, + ACTIONS(6846), 1, + anon_sym_BANG, + ACTIONS(6848), 1, + anon_sym_COLON_COLON, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [93188] = 4, + [93887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6079), 2, + ACTIONS(5330), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3272), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [93203] = 5, + [93904] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6850), 1, anon_sym_SEMI, - ACTIONS(6796), 1, - anon_sym_RPAREN, - STATE(3273), 2, + ACTIONS(6852), 1, + anon_sym_EQ, + STATE(3305), 2, + sym_line_comment, + sym_block_comment, + [93921] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(637), 1, + sym_declaration_list, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [93220] = 4, + [93938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 2, + ACTIONS(6704), 1, sym_identifier, + ACTIONS(6794), 1, sym_super, - STATE(3274), 2, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [93235] = 5, + [93955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6668), 1, - anon_sym_LT, - STATE(1054), 1, - sym_type_parameters, - STATE(3275), 2, + ACTIONS(4980), 1, + anon_sym_LBRACE, + STATE(1207), 1, + sym_field_declaration_list, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [93252] = 5, + [93972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 1, - sym_super, - ACTIONS(6798), 1, + ACTIONS(5609), 2, sym_identifier, - STATE(3276), 2, + sym_super, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [93269] = 5, + [93987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(2275), 1, - sym_parameters, - STATE(3277), 2, + ACTIONS(6854), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [93286] = 4, + [94002] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 2, - sym_identifier, - sym_super, - STATE(3278), 2, + ACTIONS(6856), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [93301] = 5, + [94017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(601), 1, - sym_declaration_list, - STATE(3279), 2, + ACTIONS(5330), 1, + anon_sym_RBRACK, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [93318] = 5, + [94034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(602), 1, + STATE(1212), 1, sym_declaration_list, - STATE(3280), 2, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [93335] = 5, + [94051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(5375), 1, anon_sym_LBRACE, - STATE(1115), 1, - sym_field_declaration_list, - STATE(3281), 2, + STATE(494), 1, + sym_enum_variant_list, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [93352] = 5, + [94068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6800), 1, - anon_sym_RPAREN, - STATE(3282), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_COLON, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [93369] = 5, + [94085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4048), 1, - anon_sym_LT2, - STATE(1711), 1, - sym_type_arguments, - STATE(3283), 2, + ACTIONS(6716), 1, + anon_sym_LT, + STATE(1079), 1, + sym_type_parameters, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [93386] = 5, + [94102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6800), 1, - anon_sym_RBRACK, - STATE(3284), 2, + ACTIONS(6162), 1, + sym_identifier, + ACTIONS(6166), 1, + sym_mutable_specifier, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [93403] = 5, + [94119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5282), 1, - anon_sym_RPAREN, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3285), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + STATE(2936), 1, + sym_lifetime, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [93420] = 5, + [94136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5282), 1, - anon_sym_RBRACK, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3286), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2282), 1, + sym_parameters, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [93437] = 5, + [94153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5284), 1, - anon_sym_RPAREN, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3287), 2, + ACTIONS(3828), 1, + anon_sym_COLON, + ACTIONS(5360), 1, + anon_sym_PLUS, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [93454] = 4, + [94170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 2, - sym_identifier, - sym_super, - STATE(3288), 2, + ACTIONS(3362), 1, + anon_sym_LT2, + STATE(1419), 1, + sym_type_arguments, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [93469] = 5, + [94187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5284), 1, - anon_sym_RBRACK, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3289), 2, + ACTIONS(6858), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [93486] = 5, + [94202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_declaration_list, - STATE(3290), 2, + ACTIONS(5280), 1, + anon_sym_RBRACE, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [93503] = 5, + [94219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - sym_super, - ACTIONS(6802), 1, - sym_identifier, - STATE(3291), 2, + ACTIONS(5389), 1, + anon_sym_LBRACE, + STATE(1217), 1, + sym_enum_variant_list, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [93520] = 5, + [94236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 1, - sym_identifier, - ACTIONS(6240), 1, - sym_mutable_specifier, - STATE(3292), 2, + ACTIONS(5222), 1, + anon_sym_RPAREN, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [93537] = 4, + [94253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 2, - anon_sym_GT, + ACTIONS(6860), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3293), 2, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [93552] = 4, + [94268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 2, - sym_identifier, - sym_metavariable, - STATE(3294), 2, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(632), 1, + sym_field_declaration_list, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [93567] = 5, + [94285] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, - sym_super, - ACTIONS(6808), 1, - sym_identifier, - STATE(3295), 2, + ACTIONS(6862), 1, + anon_sym_SEMI, + ACTIONS(6864), 1, + anon_sym_EQ, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [93584] = 4, + [94302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6720), 2, - sym_identifier, - sym_super, - STATE(3296), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(6542), 1, + anon_sym_for, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [93599] = 5, + [94319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, - sym_super, - ACTIONS(6810), 1, - sym_identifier, - STATE(3297), 2, + ACTIONS(5278), 1, + anon_sym_RPAREN, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [93616] = 5, + [94336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - STATE(639), 1, - sym_field_declaration_list, - STATE(3298), 2, + ACTIONS(6866), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [93633] = 5, + [94351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1225), 1, - sym_declaration_list, - STATE(3299), 2, + ACTIONS(5278), 1, + anon_sym_RBRACK, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [93650] = 5, + [94368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - STATE(533), 1, - sym_field_declaration_list, - STATE(3300), 2, + ACTIONS(5222), 1, + anon_sym_RBRACK, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [93667] = 5, + [94385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(2234), 1, - sym_parameters, - STATE(3301), 2, + ACTIONS(5282), 1, + anon_sym_RPAREN, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [93684] = 5, + [94402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6812), 1, - anon_sym_LBRACK, - ACTIONS(6814), 1, - anon_sym_BANG, - STATE(3302), 2, + ACTIONS(5282), 1, + anon_sym_RBRACK, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [93701] = 5, + [94419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - sym_super, - ACTIONS(6724), 1, - sym_identifier, - STATE(3303), 2, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(5360), 1, + anon_sym_PLUS, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [93718] = 5, + [94436] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6816), 1, - anon_sym_RPAREN, - STATE(3304), 2, + STATE(220), 1, + sym_closure_parameters, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [93735] = 5, + [94453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6816), 1, - anon_sym_RBRACK, - STATE(3305), 2, + ACTIONS(5701), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [93752] = 5, + [94470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6818), 1, + ACTIONS(5272), 2, anon_sym_RPAREN, - STATE(3306), 2, + anon_sym_COMMA, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [93769] = 5, + [94485] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6818), 1, - anon_sym_RBRACK, - STATE(3307), 2, + STATE(218), 1, + sym_closure_parameters, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [93786] = 4, + [94502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 2, - sym_identifier, - sym_super, - STATE(3308), 2, + ACTIONS(5236), 1, + anon_sym_RBRACE, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [93801] = 5, + [94519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, - anon_sym_BANG, - ACTIONS(6820), 1, - anon_sym_COLON_COLON, - STATE(3309), 2, + ACTIONS(6305), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [93818] = 5, + [94534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym_declaration_list, - STATE(3310), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6868), 1, + anon_sym_in, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [93835] = 5, + [94551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(537), 1, - sym_declaration_list, - STATE(3311), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2264), 1, + sym_parameters, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [93852] = 4, + [94568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 2, - sym_identifier, - sym_super, - STATE(3312), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(6552), 1, + anon_sym_for, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [93867] = 5, + [94585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_LBRACE, - STATE(643), 1, - sym_declaration_list, - STATE(3313), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6870), 1, + anon_sym_RPAREN, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [93884] = 5, + [94602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5224), 1, - anon_sym_RBRACK, - ACTIONS(6618), 1, + ACTIONS(6744), 1, anon_sym_SEMI, - STATE(3314), 2, + ACTIONS(6870), 1, + anon_sym_RBRACK, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [93901] = 5, + [94619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5730), 1, - sym_super, - STATE(3315), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6872), 1, + anon_sym_RPAREN, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [93918] = 4, + [94636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3316), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6872), 1, + anon_sym_RBRACK, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [93933] = 5, + [94653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6660), 1, - sym_identifier, - ACTIONS(6666), 1, - sym_super, - STATE(3317), 2, + ACTIONS(4980), 1, + anon_sym_LBRACE, + STATE(1220), 1, + sym_field_declaration_list, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [93950] = 5, + [94670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_SEMI, - ACTIONS(6796), 1, - anon_sym_RBRACK, - STATE(3318), 2, + ACTIONS(6716), 1, + anon_sym_LT, + STATE(953), 1, + sym_type_parameters, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [93967] = 5, + [94687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(2246), 1, - sym_parameters, - STATE(3319), 2, + ACTIONS(6690), 2, + sym_identifier, + sym_super, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [93984] = 5, + [94702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, - anon_sym_LBRACE, - STATE(1125), 1, - sym_enum_variant_list, - STATE(3320), 2, + ACTIONS(3354), 1, + anon_sym_LPAREN, + STATE(1136), 1, + sym_parameters, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [94001] = 4, + [94719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3321), 2, + ACTIONS(3058), 1, + anon_sym_SQUOTE, + STATE(3342), 1, + sym_lifetime, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [94016] = 5, + [94736] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, - anon_sym_LT2, - STATE(1464), 1, - sym_type_arguments, - STATE(3322), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_parameters, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [94033] = 5, + [94753] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1233), 1, + STATE(1318), 1, sym_declaration_list, - STATE(3323), 2, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [94050] = 4, + [94770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3324), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2278), 1, + sym_parameters, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [94065] = 4, + [94787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6686), 2, - sym_identifier, + ACTIONS(5609), 1, sym_super, - STATE(3325), 2, + ACTIONS(6874), 1, + sym_identifier, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [94080] = 5, + [94804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(4980), 1, anon_sym_LBRACE, - STATE(1234), 1, - sym_declaration_list, - STATE(3326), 2, + STATE(1223), 1, + sym_field_declaration_list, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [94097] = 4, + [94821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 2, + ACTIONS(6876), 1, sym_identifier, - sym_super, - STATE(3327), 2, + ACTIONS(6878), 1, + sym_mutable_specifier, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [94112] = 4, + [94838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5934), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3328), 2, + ACTIONS(5286), 1, + anon_sym_RBRACE, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [94127] = 5, + [94855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, - sym_identifier, - ACTIONS(5730), 1, - sym_super, - STATE(3329), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1327), 1, + sym_declaration_list, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [94144] = 4, + [94872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3330), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym_declaration_list, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [94159] = 4, + [94889] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3331), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(542), 1, + sym_declaration_list, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [94174] = 5, + [94906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - STATE(649), 1, - sym_field_declaration_list, - STATE(3332), 2, + ACTIONS(6880), 1, + anon_sym_STAR_SLASH, + ACTIONS(6882), 1, + sym__block_comment_content, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [94191] = 5, + [94923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(5389), 1, anon_sym_LBRACE, - STATE(1128), 1, - sym_field_declaration_list, - STATE(3333), 2, + STATE(1140), 1, + sym_enum_variant_list, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [94208] = 5, + [94940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_SQUOTE, - STATE(3384), 1, - sym_lifetime, - STATE(3334), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2013), 1, + sym_parameters, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [94225] = 5, + [94957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, + ACTIONS(6884), 1, + anon_sym_LPAREN, + ACTIONS(6886), 1, anon_sym_COLON_COLON, - ACTIONS(6545), 1, - anon_sym_for, - STATE(3335), 2, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [94242] = 5, + [94974] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 1, + ACTIONS(6840), 1, anon_sym_LPAREN, - ACTIONS(6832), 1, + ACTIONS(6888), 1, anon_sym_COLON_COLON, - STATE(3336), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [94259] = 5, + [94991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_field_declaration_list, - STATE(3337), 2, + ACTIONS(6890), 1, + anon_sym_BANG, + ACTIONS(6892), 1, + anon_sym_COLON_COLON, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [94276] = 5, + [95008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6668), 1, - anon_sym_LT, - STATE(890), 1, - sym_type_parameters, - STATE(3338), 2, + ACTIONS(6894), 1, + anon_sym_SEMI, + ACTIONS(6896), 1, + anon_sym_as, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [94293] = 5, + [95025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, - anon_sym_BANG, - ACTIONS(6836), 1, - anon_sym_COLON_COLON, - STATE(3339), 2, + ACTIONS(6898), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [94310] = 5, + [95040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - anon_sym_LPAREN, - STATE(1351), 1, - sym_parameters, - STATE(3340), 2, + ACTIONS(6716), 1, + anon_sym_LT, + STATE(1080), 1, + sym_type_parameters, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [94327] = 5, + [95057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_LPAREN, - STATE(2247), 1, - sym_parameters, - STATE(3341), 2, + ACTIONS(6900), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [94344] = 5, + [95072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6668), 1, - anon_sym_LT, - STATE(1058), 1, - sym_type_parameters, - STATE(3342), 2, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(2296), 1, + sym_parameters, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [94361] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [95089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, - STATE(3343), 2, + ACTIONS(5005), 1, + anon_sym_LBRACE, + STATE(533), 1, + sym_declaration_list, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [94378] = 5, + [95106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - anon_sym_SEMI, - ACTIONS(6840), 1, - anon_sym_as, - STATE(3344), 2, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(6902), 1, + anon_sym_EQ, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [94395] = 4, + [95123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6842), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3345), 2, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(650), 1, + sym_field_declaration_list, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [94410] = 5, + [95140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6904), 1, anon_sym_SEMI, - ACTIONS(6844), 1, - anon_sym_RBRACE, - STATE(3346), 2, + ACTIONS(6906), 1, + anon_sym_as, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [94427] = 5, + [95157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, - anon_sym_LBRACE, - STATE(546), 1, - sym_field_declaration_list, - STATE(3347), 2, + ACTIONS(5288), 1, + anon_sym_RBRACE, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [94444] = 5, + [95174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5001), 1, anon_sym_LBRACE, - STATE(656), 1, - sym_declaration_list, - STATE(3348), 2, + STATE(773), 1, + sym_field_declaration_list, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [94461] = 5, + [95191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, - anon_sym_SEMI, - ACTIONS(6848), 1, - anon_sym_as, - STATE(3349), 2, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6908), 1, + anon_sym_COLON_COLON, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [94478] = 5, + [95208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6626), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, + ACTIONS(4683), 1, anon_sym_COLON_COLON, - STATE(3350), 2, + ACTIONS(6618), 1, + anon_sym_for, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [94495] = 5, + [95225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5226), 1, - anon_sym_RBRACE, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3351), 2, + ACTIONS(5001), 1, + anon_sym_LBRACE, + STATE(623), 1, + sym_field_declaration_list, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [94512] = 5, + [95242] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_enum_variant_list, - STATE(3352), 2, + ACTIONS(6620), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [94529] = 5, + [95257] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6626), 1, - anon_sym_LPAREN, - ACTIONS(6852), 1, - anon_sym_COLON_COLON, - STATE(3353), 2, + ACTIONS(6910), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [94546] = 5, + [95272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, - sym_super, - ACTIONS(6802), 1, - sym_identifier, - STATE(3354), 2, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + anon_sym_COLON_COLON, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [94563] = 5, + [95289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 1, + ACTIONS(6914), 1, anon_sym_LBRACK, - ACTIONS(6856), 1, + ACTIONS(6916), 1, anon_sym_BANG, - STATE(3355), 2, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [94580] = 4, + [95306] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 2, + ACTIONS(6918), 2, sym_identifier, sym_metavariable, - STATE(3356), 2, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [94595] = 5, + [95321] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(6860), 1, + ACTIONS(6920), 1, anon_sym_in, - STATE(3357), 2, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [94612] = 5, + [95338] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4701), 1, - anon_sym_BANG, - ACTIONS(4761), 1, - anon_sym_COLON_COLON, - STATE(3358), 2, + ACTIONS(6922), 2, + sym_identifier, + sym_metavariable, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [94629] = 5, + [95353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6862), 1, - anon_sym_EQ, - STATE(3359), 2, + ACTIONS(6770), 1, + sym_identifier, + ACTIONS(6794), 1, + sym_super, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [94646] = 4, + [95370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6864), 2, - sym_identifier, - sym_metavariable, - STATE(3360), 2, + ACTIONS(5375), 1, + anon_sym_LBRACE, + STATE(755), 1, + sym_enum_variant_list, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [94661] = 5, + [95387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, + ACTIONS(4683), 1, anon_sym_COLON_COLON, - ACTIONS(4849), 1, - anon_sym_BANG, - STATE(3361), 2, + ACTIONS(5070), 1, + anon_sym_for, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [94678] = 5, + [95404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(5016), 1, - anon_sym_for, - STATE(3362), 2, + ACTIONS(4980), 1, + anon_sym_LBRACE, + STATE(1150), 1, + sym_field_declaration_list, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [94695] = 5, + [95421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_RPAREN, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(3363), 2, + ACTIONS(6924), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [94712] = 4, + [95436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3364), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6926), 1, + anon_sym_RBRACE, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [94727] = 4, + [95453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6272), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3365), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1153), 1, + sym_declaration_list, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [94742] = 4, + [95470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 2, + ACTIONS(6928), 2, sym_identifier, sym_metavariable, - STATE(3366), 2, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [94757] = 5, + [95485] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, + ACTIONS(5719), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3400), 2, + sym_line_comment, + sym_block_comment, + [95500] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4683), 1, anon_sym_COLON_COLON, - ACTIONS(6590), 1, + ACTIONS(6637), 1, anon_sym_for, - STATE(3367), 2, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [94774] = 5, + [95517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(5308), 1, - anon_sym_PLUS, - STATE(3368), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6930), 1, + anon_sym_RBRACE, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [94791] = 5, + [95534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, + ACTIONS(4683), 1, anon_sym_COLON_COLON, - ACTIONS(6594), 1, + ACTIONS(6641), 1, anon_sym_for, - STATE(3369), 2, + STATE(3403), 2, sym_line_comment, sym_block_comment, - [94808] = 5, + [95551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_RBRACK, - ACTIONS(6618), 1, + ACTIONS(6932), 1, anon_sym_SEMI, - STATE(3370), 2, + ACTIONS(6934), 1, + anon_sym_EQ, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [94825] = 5, + [95568] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym_field_declaration_list, - STATE(3371), 2, + ACTIONS(6936), 2, + sym_identifier, + sym_metavariable, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [94842] = 5, + [95583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(6870), 1, + ACTIONS(6938), 1, anon_sym_in, - STATE(3372), 2, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [94859] = 5, + [95600] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(6598), 1, - anon_sym_for, - STATE(3373), 2, + ACTIONS(6706), 2, + sym_identifier, + sym_super, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [94876] = 5, + [95615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym_declaration_list, - STATE(3374), 2, + ACTIONS(4683), 1, + anon_sym_COLON_COLON, + ACTIONS(6650), 1, + anon_sym_for, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [94893] = 5, + [95632] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6872), 1, + ACTIONS(6940), 1, anon_sym_LBRACK, - ACTIONS(6874), 1, + ACTIONS(6942), 1, anon_sym_BANG, - STATE(3375), 2, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [94910] = 5, + [95649] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(6876), 1, + ACTIONS(6944), 1, anon_sym_in, - STATE(3376), 2, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [94927] = 5, + [95666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(6878), 1, + ACTIONS(6946), 1, anon_sym_in, - STATE(3377), 2, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [94944] = 5, + [95683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(6880), 1, + ACTIONS(6948), 1, anon_sym_in, - STATE(3378), 2, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [94961] = 5, + [95700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(6882), 1, + ACTIONS(6950), 1, anon_sym_in, - STATE(3379), 2, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [94978] = 5, + [95717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6600), 1, + ACTIONS(6660), 1, sym_identifier, - ACTIONS(6604), 1, + ACTIONS(6664), 1, sym_mutable_specifier, - STATE(3380), 2, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [94995] = 5, + [95734] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACE, - STATE(1369), 1, - sym_declaration_list, - STATE(3381), 2, + ACTIONS(6700), 2, + sym_identifier, + sym_super, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [95012] = 5, + [95749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LBRACE, - STATE(664), 1, - sym_enum_variant_list, - STATE(3382), 2, + ACTIONS(6794), 2, + sym_identifier, + sym_super, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [95029] = 5, + [95764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, + ACTIONS(5082), 1, + anon_sym_PLUS, + ACTIONS(6952), 1, + anon_sym_GT, + STATE(3417), 2, + sym_line_comment, + sym_block_comment, + [95781] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6954), 1, sym_identifier, - ACTIONS(6886), 1, + ACTIONS(6956), 1, sym_mutable_specifier, - STATE(3383), 2, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [95046] = 4, + [95798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3384), 2, + ACTIONS(6700), 1, + sym_super, + ACTIONS(6714), 1, + sym_identifier, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [95061] = 4, + [95815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5786), 1, - anon_sym_RBRACK, - STATE(3385), 2, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1370), 1, + sym_declaration_list, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [95075] = 4, + [95832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - sym_identifier, - STATE(3386), 2, + ACTIONS(4980), 1, + anon_sym_LBRACE, + STATE(1159), 1, + sym_field_declaration_list, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [95089] = 4, + [95849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 1, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(1201), 1, + sym_declaration_list, + STATE(3422), 2, + sym_line_comment, + sym_block_comment, + [95866] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6958), 1, + anon_sym_RPAREN, + STATE(3423), 2, + sym_line_comment, + sym_block_comment, + [95880] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + STATE(3424), 2, + sym_line_comment, + sym_block_comment, + [95894] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6960), 1, sym_identifier, - STATE(3387), 2, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [95103] = 4, + [95908] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6071), 1, - anon_sym_RBRACE, - STATE(3388), 2, + ACTIONS(6962), 1, + sym_identifier, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [95117] = 4, + [95922] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 1, - anon_sym_LPAREN, - STATE(3389), 2, + ACTIONS(6964), 1, + anon_sym_SEMI, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [95131] = 4, + [95936] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - anon_sym_RBRACE, - STATE(3390), 2, + ACTIONS(6966), 1, + anon_sym_LT, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [95145] = 4, + [95950] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, - anon_sym_EQ_GT, - STATE(3391), 2, + ACTIONS(4110), 1, + sym_identifier, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [95159] = 4, + [95964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6898), 1, + ACTIONS(6968), 1, sym_identifier, - STATE(3392), 2, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [95173] = 4, + [95978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, + ACTIONS(6970), 1, sym_identifier, - STATE(3393), 2, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [95187] = 4, + [95992] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, + ACTIONS(6972), 1, sym_identifier, - STATE(3394), 2, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [95201] = 4, + [96006] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6904), 1, + ACTIONS(6974), 1, sym_identifier, - STATE(3395), 2, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [95215] = 4, + [96020] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 1, - anon_sym_SEMI, - STATE(3396), 2, + ACTIONS(6976), 1, + anon_sym_RBRACK, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [95229] = 4, + [96034] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - anon_sym_fn, - STATE(3397), 2, + ACTIONS(6978), 1, + sym_identifier, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [95243] = 4, + [96048] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, - anon_sym_RPAREN, - STATE(3398), 2, + ACTIONS(6065), 1, + anon_sym_RBRACE, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [95257] = 4, + [96062] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 1, - sym__raw_string_literal_end, - STATE(3399), 2, + ACTIONS(6980), 1, + anon_sym_SEMI, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [95271] = 4, + [96076] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4182), 1, anon_sym_COLON_COLON, - STATE(3400), 2, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [95285] = 4, + [96090] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6914), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - STATE(3401), 2, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [95299] = 4, + [96104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4703), 1, anon_sym_COLON_COLON, - STATE(3402), 2, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [95313] = 4, + [96118] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6195), 1, - anon_sym_GT, - STATE(3403), 2, + ACTIONS(6982), 1, + anon_sym_RBRACK, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [95327] = 4, + [96132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3114), 1, - anon_sym_PLUS, - STATE(3404), 2, + ACTIONS(953), 1, + anon_sym_EQ_GT, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [95341] = 4, + [96146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 1, - anon_sym_RBRACK, - STATE(3405), 2, + ACTIONS(6984), 1, + anon_sym_EQ, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [95355] = 4, + [96160] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6918), 1, - sym__raw_string_literal_end, - STATE(3406), 2, + ACTIONS(6118), 1, + anon_sym_RBRACE, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [95369] = 4, + [96174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6920), 1, - sym_identifier, - STATE(3407), 2, + ACTIONS(6986), 1, + anon_sym_SEMI, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [95383] = 4, + [96188] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, - anon_sym_RBRACE, - STATE(3408), 2, + ACTIONS(6988), 1, + anon_sym_RPAREN, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [95397] = 4, + [96202] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6922), 1, + ACTIONS(6990), 1, anon_sym_SEMI, - STATE(3409), 2, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [95411] = 4, + [96216] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, + ACTIONS(4660), 1, anon_sym_COLON_COLON, - STATE(3410), 2, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [95425] = 4, + [96230] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6924), 1, - anon_sym_EQ_GT, - STATE(3411), 2, + ACTIONS(6992), 1, + anon_sym_LPAREN, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [95439] = 4, + [96244] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6744), 1, - anon_sym_COLON_COLON, - STATE(3412), 2, + ACTIONS(6994), 1, + anon_sym_LPAREN, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [95453] = 4, + [96258] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 1, - sym_identifier, - STATE(3413), 2, + ACTIONS(6996), 1, + anon_sym_SEMI, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [95467] = 4, + [96272] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6928), 1, - sym__line_doc_content, - STATE(3414), 2, + ACTIONS(6998), 1, + anon_sym_SEMI, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [95481] = 4, + [96286] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6930), 1, - anon_sym_fn, - STATE(3415), 2, + ACTIONS(7000), 1, + sym_identifier, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [95495] = 4, + [96300] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5526), 1, - anon_sym_RPAREN, - STATE(3416), 2, + ACTIONS(7002), 1, + anon_sym_fn, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [95509] = 4, + [96314] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6932), 1, - anon_sym_COLON_COLON, - STATE(3417), 2, + ACTIONS(6265), 1, + anon_sym_GT, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [95523] = 4, + [96328] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 1, - anon_sym_SEMI, - STATE(3418), 2, + ACTIONS(7004), 1, + anon_sym_COLON_COLON, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [95537] = 4, + [96342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6936), 1, - anon_sym_COLON, - STATE(3419), 2, + ACTIONS(7006), 1, + sym_identifier, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [95551] = 4, + [96356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, - sym_self, - STATE(3420), 2, + ACTIONS(7008), 1, + anon_sym_SEMI, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [95565] = 4, + [96370] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6940), 1, + ACTIONS(7010), 1, sym_identifier, - STATE(3421), 2, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [95579] = 4, + [96384] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6942), 1, - anon_sym_RPAREN, - STATE(3422), 2, + ACTIONS(7012), 1, + anon_sym_SEMI, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [95593] = 4, + [96398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6944), 1, - sym_identifier, - STATE(3423), 2, + ACTIONS(7014), 1, + anon_sym_EQ_GT, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [95607] = 4, + [96412] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - sym_identifier, - STATE(3424), 2, + ACTIONS(5021), 1, + anon_sym_COLON_COLON, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [95621] = 4, + [96426] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6948), 1, - anon_sym_COLON, - STATE(3425), 2, + ACTIONS(7016), 1, + anon_sym_fn, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [95635] = 4, + [96440] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 1, - sym_identifier, - STATE(3426), 2, + ACTIONS(7018), 1, + anon_sym_RBRACK, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [95649] = 4, + [96454] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6952), 1, - anon_sym_COLON_COLON, - STATE(3427), 2, + ACTIONS(7020), 1, + sym_identifier, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [95663] = 4, + [96468] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6954), 1, - sym_identifier, - STATE(3428), 2, + ACTIONS(7022), 1, + anon_sym_COLON_COLON, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [95677] = 4, + [96482] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 1, + ACTIONS(7024), 1, sym_identifier, - STATE(3429), 2, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [95691] = 4, + [96496] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, + ACTIONS(7026), 1, sym_identifier, - STATE(3430), 2, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [95705] = 4, + [96510] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6960), 1, + ACTIONS(7028), 1, sym_identifier, - STATE(3431), 2, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [95719] = 4, + [96524] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 1, + ACTIONS(7030), 1, sym_identifier, - STATE(3432), 2, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [95733] = 4, + [96538] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - anon_sym_LBRACK, - STATE(3433), 2, + ACTIONS(7032), 1, + sym_identifier, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [95747] = 4, + [96552] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, - sym_raw_string_literal_content, - STATE(3434), 2, + ACTIONS(6114), 1, + anon_sym_RBRACE, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [95761] = 4, + [96566] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 1, - anon_sym_SEMI, - STATE(3435), 2, + ACTIONS(6087), 1, + anon_sym_RBRACE, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [95775] = 4, + [96580] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6970), 1, - anon_sym_RBRACK, - STATE(3436), 2, + ACTIONS(4248), 1, + anon_sym_RPAREN, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [95789] = 4, + [96594] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_SEMI, - STATE(3437), 2, + ACTIONS(5793), 1, + anon_sym_RPAREN, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [95803] = 4, + [96608] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6974), 1, - anon_sym_COLON, - STATE(3438), 2, + ACTIONS(871), 1, + anon_sym_RBRACK, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [95817] = 4, + [96622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 1, - sym__line_doc_content, - STATE(3439), 2, + ACTIONS(3758), 1, + anon_sym_COLON_COLON, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [95831] = 4, + [96636] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, - anon_sym_SEMI, - STATE(3440), 2, + ACTIONS(5555), 1, + anon_sym_RPAREN, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [95845] = 4, + [96650] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 1, - anon_sym_SEMI, - STATE(3441), 2, + ACTIONS(5808), 1, + anon_sym_RPAREN, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [95859] = 4, + [96664] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 1, + ACTIONS(7034), 1, anon_sym_RPAREN, - STATE(3442), 2, + STATE(3480), 2, sym_line_comment, sym_block_comment, - [95873] = 4, + [96678] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 1, + ACTIONS(7036), 1, anon_sym_SEMI, - STATE(3443), 2, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [95887] = 4, + [96692] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 1, - anon_sym_fn, - STATE(3444), 2, + ACTIONS(7038), 1, + anon_sym_COLON, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [95901] = 4, + [96706] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4996), 1, + ACTIONS(5017), 1, anon_sym_COLON_COLON, - STATE(3445), 2, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [95915] = 4, + [96720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 1, - anon_sym_COLON, - STATE(3446), 2, + ACTIONS(4200), 1, + anon_sym_RPAREN, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [95929] = 4, + [96734] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, + ACTIONS(7040), 1, anon_sym_COLON_COLON, - STATE(3447), 2, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [95943] = 4, + [96748] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, + ACTIONS(7042), 1, anon_sym_fn, - STATE(3448), 2, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [95957] = 4, + [96762] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(885), 1, - anon_sym_RBRACK, - STATE(3449), 2, + ACTIONS(7044), 1, + sym_identifier, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [95971] = 4, + [96776] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5884), 1, + ACTIONS(5967), 1, anon_sym_LBRACE, - STATE(3450), 2, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [95985] = 4, + [96790] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 1, + ACTIONS(7046), 1, anon_sym_SEMI, - STATE(3451), 2, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [95999] = 4, + [96804] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, - anon_sym_SEMI, - STATE(3452), 2, + ACTIONS(7048), 1, + anon_sym_EQ_GT, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [96013] = 4, + [96818] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6998), 1, - sym__raw_string_literal_end, - STATE(3453), 2, + ACTIONS(7050), 1, + sym__line_doc_content, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [96027] = 4, + [96832] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 1, + ACTIONS(7052), 1, + sym__line_doc_content, + STATE(3492), 2, + sym_line_comment, + sym_block_comment, + [96846] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7054), 1, anon_sym_SEMI, - STATE(3454), 2, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [96041] = 4, + [96860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7002), 1, + ACTIONS(7056), 1, sym_identifier, - STATE(3455), 2, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [96055] = 4, + [96874] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, + ACTIONS(7058), 1, anon_sym_SEMI, - STATE(3456), 2, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [96069] = 4, + [96888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7006), 1, - sym__line_doc_content, - STATE(3457), 2, + ACTIONS(7060), 1, + anon_sym_RBRACE, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [96083] = 4, + [96902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6507), 1, - anon_sym_RBRACE, - STATE(3458), 2, + ACTIONS(6744), 1, + anon_sym_SEMI, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [96097] = 4, + [96916] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7008), 1, - anon_sym_RBRACK, - STATE(3459), 2, + ACTIONS(7062), 1, + sym_raw_string_literal_content, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [96111] = 4, + [96930] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7010), 1, - anon_sym_COLON_COLON, - STATE(3460), 2, + ACTIONS(5236), 1, + anon_sym_SEMI, + STATE(3499), 2, sym_line_comment, sym_block_comment, - [96125] = 4, + [96944] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7012), 1, - sym__line_doc_content, - STATE(3461), 2, + ACTIONS(7064), 1, + sym_identifier, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [96139] = 4, + [96958] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7014), 1, + ACTIONS(7066), 1, anon_sym_SEMI, - STATE(3462), 2, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [96153] = 4, + [96972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 1, + ACTIONS(7068), 1, anon_sym_COLON, - STATE(3463), 2, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [96167] = 4, + [96986] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 1, - anon_sym_COLON, - STATE(3464), 2, + ACTIONS(7070), 1, + anon_sym_RBRACK, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [96181] = 4, + [97000] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, + ACTIONS(7072), 1, sym_identifier, - STATE(3465), 2, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [96195] = 4, + [97014] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6293), 1, - anon_sym_RBRACE, - STATE(3466), 2, + ACTIONS(7074), 1, + sym_identifier, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [96209] = 4, + [97028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7022), 1, - sym_identifier, - STATE(3467), 2, + ACTIONS(7076), 1, + sym__raw_string_literal_end, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [96223] = 4, + [97042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, - sym_identifier, - STATE(3468), 2, + ACTIONS(7078), 1, + anon_sym_COLON, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [96237] = 4, + [97056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 1, + ACTIONS(7080), 1, + anon_sym_RBRACE, + STATE(3508), 2, + sym_line_comment, + sym_block_comment, + [97070] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7082), 1, anon_sym_SEMI, - STATE(3469), 2, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [96251] = 4, + [97084] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_GT, - STATE(3470), 2, + ACTIONS(7084), 1, + anon_sym_SEMI, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [96265] = 4, + [97098] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 1, - anon_sym_RBRACE, - STATE(3471), 2, + ACTIONS(7086), 1, + anon_sym_COLON, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [96279] = 4, + [97112] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, + ACTIONS(7088), 1, anon_sym_SEMI, - STATE(3472), 2, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [96293] = 4, + [97126] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, + ACTIONS(7090), 1, anon_sym_SEMI, - STATE(3473), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [96307] = 4, + [97140] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_SEMI, - STATE(3474), 2, + ACTIONS(6421), 1, + anon_sym_RBRACE, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [96321] = 4, + [97154] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5585), 1, - anon_sym_RPAREN, - STATE(3475), 2, + ACTIONS(7092), 1, + sym_identifier, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [96335] = 4, + [97168] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4194), 1, + ACTIONS(5689), 1, anon_sym_RPAREN, - STATE(3476), 2, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [96349] = 4, + [97182] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - STATE(3477), 2, + ACTIONS(7094), 1, + anon_sym_RBRACK, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [96363] = 4, + [97196] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - anon_sym_RBRACE, - STATE(3478), 2, + ACTIONS(7096), 1, + sym_identifier, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [96377] = 4, + [97210] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, - anon_sym_PLUS, - STATE(3479), 2, + ACTIONS(7098), 1, + anon_sym_SEMI, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [96391] = 4, + [97224] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, + ACTIONS(7100), 1, anon_sym_SEMI, - STATE(3480), 2, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [96405] = 4, + [97238] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6232), 1, - anon_sym_GT, - STATE(3481), 2, + ACTIONS(7102), 1, + anon_sym_LT2, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [96419] = 4, + [97252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_RBRACK, - STATE(3482), 2, + ACTIONS(7104), 1, + anon_sym_RBRACE, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [96433] = 4, + [97266] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - anon_sym_SEMI, - STATE(3483), 2, + ACTIONS(6209), 1, + anon_sym_RBRACE, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [96447] = 4, + [97280] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_RBRACE, - STATE(3484), 2, + ACTIONS(7106), 1, + sym_self, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [96461] = 4, + [97294] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - anon_sym_LT2, - STATE(3485), 2, + ACTIONS(7108), 1, + sym__raw_string_literal_end, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [96475] = 4, + [97308] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5226), 1, + ACTIONS(5286), 1, anon_sym_SEMI, - STATE(3486), 2, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [96489] = 4, + [97322] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, + ACTIONS(7110), 1, anon_sym_SEMI, - STATE(3487), 2, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [96503] = 4, + [97336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, + ACTIONS(7112), 1, anon_sym_SEMI, - STATE(3488), 2, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [96517] = 4, + [97350] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(7114), 1, anon_sym_SEMI, - STATE(3489), 2, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [96531] = 4, + [97364] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5916), 1, - anon_sym_RPAREN, - STATE(3490), 2, + ACTIONS(6091), 1, + anon_sym_RBRACE, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [96545] = 4, + [97378] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RBRACK, - STATE(3491), 2, + ACTIONS(7116), 1, + anon_sym_COLON, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [96559] = 4, + [97392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - anon_sym_SEMI, - STATE(3492), 2, + ACTIONS(6554), 1, + anon_sym_COLON_COLON, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [96573] = 4, + [97406] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_RBRACK, - STATE(3493), 2, + ACTIONS(7118), 1, + sym__line_doc_content, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [96587] = 4, + [97420] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - anon_sym_RPAREN, - STATE(3494), 2, + ACTIONS(7120), 1, + anon_sym_SEMI, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [96601] = 4, + [97434] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_fn, - STATE(3495), 2, + ACTIONS(6558), 1, + anon_sym_RBRACE, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [96615] = 4, + [97448] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5936), 1, - anon_sym_RBRACK, - STATE(3496), 2, + ACTIONS(7122), 1, + sym_identifier, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [96629] = 4, + [97462] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, - anon_sym_LPAREN, - STATE(3497), 2, + ACTIONS(5949), 1, + anon_sym_RBRACK, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [96643] = 4, + [97476] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_EQ_GT, - STATE(3498), 2, + ACTIONS(7124), 1, + anon_sym_SEMI, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [96657] = 4, + [97490] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5732), 1, - anon_sym_RPAREN, - STATE(3499), 2, + ACTIONS(7126), 1, + anon_sym_SEMI, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [96671] = 4, + [97504] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym_identifier, - STATE(3500), 2, + ACTIONS(6768), 1, + anon_sym_COLON_COLON, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [96685] = 4, + [97518] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, - sym__raw_string_literal_end, - STATE(3501), 2, + ACTIONS(5975), 1, + anon_sym_LBRACE, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [96699] = 4, + [97532] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - ts_builtin_sym_end, - STATE(3502), 2, + ACTIONS(7128), 1, + sym_identifier, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [96713] = 4, + [97546] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_COLON_COLON, - STATE(3503), 2, + ACTIONS(7130), 1, + anon_sym_SEMI, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [96727] = 4, + [97560] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - anon_sym_EQ_GT, - STATE(3504), 2, + ACTIONS(7132), 1, + anon_sym_SEMI, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [96741] = 4, + [97574] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - anon_sym_EQ_GT, - STATE(3505), 2, + ACTIONS(7134), 1, + anon_sym_RBRACK, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [96755] = 4, + [97588] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_SEMI, - STATE(3506), 2, + ACTIONS(3140), 1, + anon_sym_PLUS, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [96769] = 4, + [97602] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, - anon_sym_RBRACE, - STATE(3507), 2, + ACTIONS(7136), 1, + anon_sym_STAR_SLASH, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [96783] = 4, + [97616] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - sym_identifier, - STATE(3508), 2, + ACTIONS(7138), 1, + anon_sym_SEMI, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [96797] = 4, + [97630] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, - anon_sym_RBRACK, - STATE(3509), 2, + ACTIONS(7140), 1, + anon_sym_EQ_GT, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [96811] = 4, + [97644] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - STATE(3510), 2, + ACTIONS(5625), 1, + anon_sym_RPAREN, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [96825] = 4, + [97658] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, - sym_identifier, - STATE(3511), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [96839] = 4, + [97672] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_SEMI, - STATE(3512), 2, + ACTIONS(4034), 1, + anon_sym_COLON_COLON, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [96853] = 4, + [97686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, - sym_identifier, - STATE(3513), 2, + ACTIONS(7142), 1, + anon_sym_SEMI, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [96867] = 4, + [97700] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5994), 1, - anon_sym_RBRACE, - STATE(3514), 2, + ACTIONS(7144), 1, + anon_sym_SEMI, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [96881] = 4, + [97714] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5240), 1, - anon_sym_SEMI, - STATE(3515), 2, + ACTIONS(4640), 1, + anon_sym_fn, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [96895] = 4, + [97728] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, + ACTIONS(7146), 1, anon_sym_LBRACK, - STATE(3516), 2, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [96909] = 4, + [97742] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, + ACTIONS(7148), 1, anon_sym_COLON, - STATE(3517), 2, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [96923] = 4, + [97756] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - sym_identifier, - STATE(3518), 2, + ACTIONS(3892), 1, + anon_sym_COLON_COLON, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [96937] = 4, + [97770] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5976), 1, + ACTIONS(7150), 1, anon_sym_RPAREN, - STATE(3519), 2, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [96951] = 4, + [97784] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - anon_sym_SEMI, - STATE(3520), 2, + ACTIONS(7152), 1, + sym_identifier, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [96965] = 4, + [97798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - anon_sym_COLON, - STATE(3521), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [96979] = 4, + [97812] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_SEMI, - STATE(3522), 2, + ACTIONS(7154), 1, + sym_identifier, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [96993] = 4, + [97826] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_SEMI, - STATE(3523), 2, + ACTIONS(7156), 1, + anon_sym_RBRACK, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [97007] = 4, + [97840] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - anon_sym_COLON, - STATE(3524), 2, + ACTIONS(6138), 1, + anon_sym_RBRACE, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [97021] = 4, + [97854] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, + ACTIONS(7158), 1, sym_identifier, - STATE(3525), 2, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [97035] = 4, + [97868] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_RBRACK, - STATE(3526), 2, + ACTIONS(7160), 1, + anon_sym_STAR_SLASH, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [97049] = 4, + [97882] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_RBRACK, - STATE(3527), 2, + ACTIONS(7162), 1, + anon_sym_SEMI, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [97063] = 4, + [97896] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, - STATE(3528), 2, + ACTIONS(7164), 1, + anon_sym_SEMI, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [97077] = 4, + [97910] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - sym_identifier, - STATE(3529), 2, + ACTIONS(7166), 1, + anon_sym_SEMI, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [97091] = 4, + [97924] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - sym_identifier, - STATE(3530), 2, + ACTIONS(7168), 1, + anon_sym_RBRACK, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [97105] = 4, + [97938] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_SEMI, - STATE(3531), 2, + ACTIONS(7170), 1, + anon_sym_fn, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [97119] = 4, + [97952] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_RBRACK, - STATE(3532), 2, + ACTIONS(7172), 1, + sym_identifier, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [97133] = 4, + [97966] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_SEMI, - STATE(3533), 2, + ACTIONS(6249), 1, + anon_sym_RBRACE, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [97147] = 4, + [97980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - anon_sym_RBRACE, - STATE(3534), 2, + ACTIONS(7174), 1, + anon_sym_COLON, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [97161] = 4, + [97994] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6042), 1, - anon_sym_RBRACE, - STATE(3535), 2, + ACTIONS(7176), 1, + sym__line_doc_content, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [97175] = 4, + [98008] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, + ACTIONS(7178), 1, anon_sym_SEMI, - STATE(3536), 2, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [97189] = 4, + [98022] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, + ACTIONS(7180), 1, anon_sym_COLON_COLON, - STATE(3537), 2, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [97203] = 4, + [98036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_RBRACE, - STATE(3538), 2, + ACTIONS(5789), 1, + anon_sym_RPAREN, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [97217] = 4, + [98050] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(867), 1, - anon_sym_RBRACK, - STATE(3539), 2, + ACTIONS(7182), 1, + sym_identifier, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [97231] = 4, + [98064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - anon_sym_SEMI, - STATE(3540), 2, + ACTIONS(7184), 1, + anon_sym_COLON_COLON, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [97245] = 4, + [98078] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - anon_sym_COLON, - STATE(3541), 2, + ACTIONS(7186), 1, + sym_raw_string_literal_content, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [97259] = 4, + [98092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_PLUS, - STATE(3542), 2, + ACTIONS(7188), 1, + sym_identifier, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [97273] = 4, + [98106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - sym_identifier, - STATE(3543), 2, + ACTIONS(7190), 1, + anon_sym_COLON, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [97287] = 4, + [98120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - sym_raw_string_literal_content, - STATE(3544), 2, + ACTIONS(7192), 1, + sym__raw_string_literal_end, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [97301] = 4, + [98134] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6543), 1, + ACTIONS(4258), 1, anon_sym_COLON_COLON, - STATE(3545), 2, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [97315] = 4, + [98148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - sym__raw_string_literal_end, - STATE(3546), 2, + ACTIONS(5763), 1, + anon_sym_COLON_COLON, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [97329] = 4, + [98162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - anon_sym_COLON_COLON, - STATE(3547), 2, + ACTIONS(7194), 1, + anon_sym_COLON, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [97343] = 4, + [98176] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(5276), 1, anon_sym_COLON_COLON, - STATE(3548), 2, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [97357] = 4, + [98190] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_COLON_COLON, - STATE(3549), 2, + ACTIONS(7196), 1, + anon_sym_EQ_GT, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [97371] = 4, + [98204] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_RPAREN, - STATE(3550), 2, + ACTIONS(7198), 1, + anon_sym_COLON_COLON, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [97385] = 4, + [98218] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6362), 1, - anon_sym_RBRACE, - STATE(3551), 2, + ACTIONS(7200), 1, + sym__line_doc_content, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [97399] = 4, + [98232] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, + ACTIONS(7202), 1, anon_sym_SEMI, - STATE(3552), 2, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [97413] = 4, + [98246] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, + ACTIONS(4683), 1, anon_sym_COLON_COLON, - STATE(3553), 2, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [97427] = 4, + [98260] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4202), 1, - anon_sym_RPAREN, - STATE(3554), 2, + ACTIONS(7204), 1, + anon_sym_fn, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [97441] = 4, + [98274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - anon_sym_STAR_SLASH, - STATE(3555), 2, + ACTIONS(7206), 1, + anon_sym_RBRACE, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [97455] = 4, + [98288] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - sym_identifier, - STATE(3556), 2, + ACTIONS(7208), 1, + anon_sym_COLON_COLON, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [97469] = 4, + [98302] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_fn, - STATE(3557), 2, + ACTIONS(7210), 1, + sym_raw_string_literal_content, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [97483] = 4, + [98316] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - sym_identifier, - STATE(3558), 2, + ACTIONS(7212), 1, + anon_sym_SEMI, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [97497] = 4, + [98330] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, + ACTIONS(7214), 1, anon_sym_COLON_COLON, - STATE(3559), 2, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [97511] = 4, + [98344] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_RPAREN, - STATE(3560), 2, + ACTIONS(7216), 1, + sym_identifier, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [97525] = 4, + [98358] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - sym_identifier, - STATE(3561), 2, + ACTIONS(7218), 1, + anon_sym_fn, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [97539] = 4, + [98372] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, + ACTIONS(4986), 1, anon_sym_COLON_COLON, - STATE(3562), 2, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [97553] = 4, + [98386] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3842), 1, - anon_sym_COLON_COLON, - STATE(3563), 2, + ACTIONS(7220), 1, + anon_sym_RBRACE, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [97567] = 4, + [98400] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - anon_sym_SEMI, - STATE(3564), 2, + ACTIONS(7222), 1, + anon_sym_COLON_COLON, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [97581] = 4, + [98414] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_COLON_COLON, - STATE(3565), 2, + ACTIONS(7224), 1, + anon_sym_fn, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [97595] = 4, + [98428] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_SEMI, - STATE(3566), 2, + ACTIONS(5804), 1, + anon_sym_RPAREN, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [97609] = 4, + [98442] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - anon_sym_COLON_COLON, - STATE(3567), 2, + ACTIONS(7226), 1, + anon_sym_LBRACE, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [97623] = 4, + [98456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - anon_sym_fn, - STATE(3568), 2, + ACTIONS(913), 1, + anon_sym_RBRACK, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [97637] = 4, + [98470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, + ACTIONS(7228), 1, sym_identifier, - STATE(3569), 2, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [97651] = 4, + [98484] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_LBRACE, - STATE(3570), 2, + ACTIONS(6051), 1, + anon_sym_RBRACE, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [97665] = 4, + [98498] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, + ACTIONS(7230), 1, anon_sym_RBRACK, - STATE(3571), 2, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [97679] = 4, + [98512] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_GT, - STATE(3572), 2, + ACTIONS(7232), 1, + anon_sym_EQ_GT, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [97693] = 4, + [98526] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - sym_identifier, - STATE(3573), 2, + ACTIONS(7234), 1, + anon_sym_RPAREN, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [97707] = 4, + [98540] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - anon_sym_SEMI, - STATE(3574), 2, + ACTIONS(7236), 1, + anon_sym_LT2, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [97721] = 4, + [98554] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + STATE(3615), 2, + sym_line_comment, + sym_block_comment, + [98568] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7238), 1, anon_sym_LT2, - STATE(3575), 2, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [97735] = 4, + [98582] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_RBRACK, - STATE(3576), 2, + ACTIONS(7240), 1, + sym_raw_string_literal_content, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [97749] = 4, + [98596] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, + ACTIONS(7242), 1, sym_identifier, - STATE(3577), 2, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [97763] = 4, + [98610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - sym_raw_string_literal_content, - STATE(3578), 2, + ACTIONS(937), 1, + anon_sym_RBRACK, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [97777] = 4, + [98624] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, + ACTIONS(5288), 1, anon_sym_SEMI, - STATE(3579), 2, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [97791] = 4, + [98638] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_RBRACK, - STATE(3580), 2, + ACTIONS(7244), 1, + anon_sym_COLON_COLON, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [97805] = 4, + [98652] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON_COLON, - STATE(3581), 2, + ACTIONS(7246), 1, + anon_sym_RBRACK, + STATE(3622), 2, + sym_line_comment, + sym_block_comment, + [98666] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7248), 1, + anon_sym_RBRACK, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [97819] = 4, + [98680] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - anon_sym_SEMI, - STATE(3582), 2, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [97833] = 4, + [98694] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, + ACTIONS(7252), 1, sym_identifier, - STATE(3583), 2, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [97847] = 4, + [98708] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - anon_sym_COLON_COLON, - STATE(3584), 2, + ACTIONS(5771), 1, + anon_sym_RPAREN, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [97861] = 4, + [98722] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_SEMI, - STATE(3585), 2, + ACTIONS(7254), 1, + anon_sym_COLON_COLON, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [97875] = 4, + [98736] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - anon_sym_SEMI, - STATE(3586), 2, + ACTIONS(7256), 1, + sym_identifier, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [97889] = 4, + [98750] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - anon_sym_COLON_COLON, - STATE(3587), 2, + ACTIONS(7258), 1, + anon_sym_SEMI, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [97903] = 4, + [98764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5222), 1, + ACTIONS(7260), 1, anon_sym_SEMI, - STATE(3588), 2, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [97917] = 4, + [98778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_LT2, - STATE(3589), 2, + ACTIONS(7262), 1, + anon_sym_COLON_COLON, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [97931] = 4, + [98792] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_COLON_COLON, - STATE(3590), 2, + ACTIONS(7264), 1, + anon_sym_LBRACE, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [97945] = 4, + [98806] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - anon_sym_LBRACE, - STATE(3591), 2, + ACTIONS(961), 1, + anon_sym_EQ_GT, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [97959] = 4, + [98820] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, + ACTIONS(7266), 1, sym_identifier, - STATE(3592), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [97973] = 4, + [98834] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, + ACTIONS(7268), 1, sym_identifier, - STATE(3593), 2, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [97987] = 4, + [98848] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_SEMI, - STATE(3594), 2, + ACTIONS(7270), 1, + sym_identifier, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [98001] = 4, + [98862] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, + ACTIONS(7272), 1, sym_raw_string_literal_content, - STATE(3595), 2, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [98015] = 4, + [98876] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3574), 1, anon_sym_COLON_COLON, - STATE(3596), 2, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [98029] = 4, + [98890] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_SEMI, - STATE(3597), 2, + ACTIONS(6397), 1, + anon_sym_GT, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [98043] = 4, + [98904] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, + ACTIONS(7274), 1, anon_sym_COLON_COLON, - STATE(3598), 2, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [98057] = 4, + [98918] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, + ACTIONS(7276), 1, anon_sym_SEMI, - STATE(3599), 2, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [98071] = 4, + [98932] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, + ACTIONS(7278), 1, anon_sym_LBRACE, - STATE(3600), 2, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [98085] = 4, + [98946] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, + ACTIONS(7280), 1, sym_raw_string_literal_content, - STATE(3601), 2, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [98099] = 4, + [98960] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5238), 1, + ACTIONS(5234), 1, anon_sym_COLON_COLON, - STATE(3602), 2, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [98113] = 4, + [98974] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, + ACTIONS(7282), 1, anon_sym_COLON_COLON, - STATE(3603), 2, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [98127] = 4, + [98988] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, + ACTIONS(7284), 1, sym_identifier, - STATE(3604), 2, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [98141] = 4, + [99002] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5946), 1, + ACTIONS(6000), 1, anon_sym_LBRACE, - STATE(3605), 2, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [98155] = 4, + [99016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5718), 1, + ACTIONS(5749), 1, anon_sym_COLON_COLON, - STATE(3606), 2, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [98169] = 4, + [99030] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, + ACTIONS(7286), 1, anon_sym_COLON_COLON, - STATE(3607), 2, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [98183] = 4, + [99044] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5964), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(3608), 2, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [98197] = 4, + [99058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, + ACTIONS(7288), 1, anon_sym_COLON_COLON, - STATE(3609), 2, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [98211] = 4, + [99072] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5286), 1, + ACTIONS(5284), 1, anon_sym_COLON_COLON, - STATE(3610), 2, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [98225] = 4, + [99086] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5290), 1, + ACTIONS(5306), 1, anon_sym_COLON_COLON, - STATE(3611), 2, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [98239] = 4, + [99100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, + ACTIONS(4256), 1, anon_sym_COLON_COLON, - STATE(3612), 2, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [98253] = 4, + [99114] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, + ACTIONS(7290), 1, anon_sym_COLON_COLON, - STATE(3613), 2, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [98267] = 4, + [99128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - anon_sym_SEMI, - STATE(3614), 2, + ACTIONS(7292), 1, + anon_sym_RPAREN, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [98281] = 4, + [99142] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6844), 1, + ACTIONS(7294), 1, anon_sym_SEMI, - STATE(3615), 2, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [98295] = 4, + [99156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_RBRACE, - STATE(3616), 2, + ACTIONS(7296), 1, + anon_sym_SEMI, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [98309] = 4, + [99170] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - sym__line_doc_content, - STATE(3617), 2, + ACTIONS(5631), 1, + anon_sym_RPAREN, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [98323] = 4, + [99184] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, + ACTIONS(7298), 1, anon_sym_COLON, - STATE(3618), 2, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [98337] = 4, + [99198] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, + ACTIONS(7300), 1, anon_sym_LBRACK, - STATE(3619), 2, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [98351] = 4, + [99212] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, - anon_sym_RPAREN, - STATE(3620), 2, + ACTIONS(7302), 1, + anon_sym_SEMI, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [98365] = 4, + [99226] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, + ACTIONS(7304), 1, anon_sym_LBRACK, - STATE(3621), 2, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [98379] = 4, + [99240] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, + ACTIONS(7306), 1, anon_sym_COLON, - STATE(3622), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [98393] = 4, + [99254] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, + ACTIONS(7308), 1, anon_sym_COLON, - STATE(3623), 2, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [98407] = 4, - ACTIONS(3), 1, + [99268] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, - aux_sym_line_comment_token2, - STATE(3624), 2, + ACTIONS(7310), 1, + anon_sym_SEMI, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [98421] = 4, + [99282] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(883), 1, + anon_sym_RBRACK, + STATE(3667), 2, + sym_line_comment, + sym_block_comment, + [99296] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7312), 1, anon_sym_SEMI, - STATE(3625), 2, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [98435] = 4, + [99310] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - anon_sym_EQ, - STATE(3626), 2, + ACTIONS(6926), 1, + anon_sym_SEMI, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [98449] = 4, + [99324] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(3627), 2, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [98463] = 4, + [99338] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, + ACTIONS(7316), 1, anon_sym_COLON, - STATE(3628), 2, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [98477] = 4, + [99352] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - sym_identifier, - STATE(3629), 2, + ACTIONS(5775), 1, + anon_sym_RBRACK, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [98491] = 4, + [99366] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(7318), 1, sym_identifier, - STATE(3630), 2, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [98505] = 4, + [99380] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - sym_identifier, - STATE(3631), 2, + ACTIONS(7320), 1, + anon_sym_SEMI, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [98519] = 4, + [99394] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, - anon_sym_RBRACE, - STATE(3632), 2, + ACTIONS(7322), 1, + anon_sym_SEMI, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [98533] = 4, + [99408] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - sym_identifier, - STATE(3633), 2, + ACTIONS(7324), 1, + anon_sym_SEMI, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [98547] = 4, + [99422] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5926), 1, - anon_sym_LBRACE, - STATE(3634), 2, + ACTIONS(7326), 1, + sym_identifier, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [98561] = 4, + [99436] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - STATE(3635), 2, + ACTIONS(7328), 1, + anon_sym_SEMI, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [98575] = 4, + [99450] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - sym_identifier, - STATE(3636), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [98589] = 4, + [99464] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - sym_identifier, - STATE(3637), 2, + ACTIONS(7332), 1, + anon_sym_COLON, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [98603] = 4, + [99478] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_COLON, - STATE(3638), 2, + ACTIONS(7334), 1, + anon_sym_RBRACE, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [98617] = 4, + [99492] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_RPAREN, - STATE(3639), 2, + ACTIONS(6930), 1, + anon_sym_SEMI, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [98631] = 4, + [99506] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, - anon_sym_STAR_SLASH, - STATE(3640), 2, + ACTIONS(7336), 1, + anon_sym_SEMI, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [98645] = 4, + [99520] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, + ACTIONS(7338), 1, anon_sym_COLON, - STATE(3641), 2, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [98659] = 4, + [99534] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, + ACTIONS(7340), 1, anon_sym_SEMI, - STATE(3642), 2, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [98673] = 4, + [99548] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_identifier, - STATE(3643), 2, + ACTIONS(7342), 1, + anon_sym_RBRACE, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [98687] = 4, + [99562] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_RPAREN, - STATE(3644), 2, + ACTIONS(7344), 1, + anon_sym_COLON_COLON, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [98701] = 4, + [99576] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - anon_sym_LT, - STATE(3645), 2, + ACTIONS(6464), 1, + anon_sym_GT, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [98715] = 4, + [99590] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_fn, - STATE(3646), 2, + ACTIONS(7346), 1, + anon_sym_SEMI, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [98729] = 4, + [99604] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, + ACTIONS(7348), 1, anon_sym_COLON, - STATE(3647), 2, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [98743] = 4, + [99618] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, - sym_identifier, - STATE(3648), 2, + ACTIONS(7350), 1, + anon_sym_EQ, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [98757] = 4, + [99632] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, - anon_sym_RPAREN, - STATE(3649), 2, + ACTIONS(7352), 1, + sym__raw_string_literal_end, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [98771] = 4, + [99646] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4075), 1, + ACTIONS(7354), 1, sym_identifier, - STATE(3650), 2, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [98785] = 4, + [99660] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, - anon_sym_SEMI, - STATE(3651), 2, + ACTIONS(7356), 1, + anon_sym_COLON, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [98799] = 4, + [99674] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - sym_identifier, - STATE(3652), 2, + ACTIONS(7358), 1, + anon_sym_COLON_COLON, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [98813] = 4, + [99688] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6612), 1, - anon_sym_RBRACE, - STATE(3653), 2, + ACTIONS(7360), 1, + sym_identifier, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [98827] = 4, + [99702] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, + ACTIONS(7362), 1, anon_sym_EQ, - STATE(3654), 2, + STATE(3697), 2, + sym_line_comment, + sym_block_comment, + [99716] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7364), 1, + aux_sym_line_comment_token2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [98841] = 4, + [99730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - anon_sym_COLON, - STATE(3655), 2, + ACTIONS(7366), 1, + sym_identifier, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [98855] = 4, + [99744] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - anon_sym_EQ_GT, - STATE(3656), 2, + ACTIONS(7368), 1, + sym_identifier, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [98869] = 4, + [99758] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, - sym__raw_string_literal_end, - STATE(3657), 2, + ACTIONS(7370), 1, + ts_builtin_sym_end, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [98883] = 4, + [99772] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - sym_identifier, - STATE(3658), 2, + ACTIONS(7372), 1, + anon_sym_SEMI, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [98897] = 4, + [99786] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, + ACTIONS(7374), 1, anon_sym_COLON, - STATE(3659), 2, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [98911] = 4, + [99800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, - anon_sym_SEMI, - STATE(3660), 2, + ACTIONS(7376), 1, + anon_sym_EQ, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [98925] = 4, + [99814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, + ACTIONS(7378), 1, anon_sym_COLON, - STATE(3661), 2, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [98939] = 4, + [99828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, + ACTIONS(7380), 1, + anon_sym_COLON, + STATE(3706), 2, + sym_line_comment, + sym_block_comment, + [99842] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7382), 1, anon_sym_LBRACK, - STATE(3662), 2, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [98953] = 4, + [99856] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, + ACTIONS(7384), 1, anon_sym_LBRACK, - STATE(3663), 2, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [98967] = 4, + [99870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, + ACTIONS(7386), 1, anon_sym_COLON, - STATE(3664), 2, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [98981] = 4, + [99884] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3888), 1, - anon_sym_COLON_COLON, - STATE(3665), 2, + ACTIONS(7388), 1, + sym_identifier, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [98995] = 4, + [99898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - anon_sym_EQ_GT, - STATE(3666), 2, + ACTIONS(7390), 1, + sym__raw_string_literal_end, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [99009] = 4, + [99912] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, + ACTIONS(7392), 1, anon_sym_COLON, - STATE(3667), 2, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [99023] = 4, + [99926] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, + ACTIONS(7394), 1, anon_sym_COLON, - STATE(3668), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [99037] = 4, + [99940] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_SEMI, - STATE(3669), 2, + ACTIONS(7396), 1, + anon_sym_RBRACE, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [99051] = 4, + [99954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, - anon_sym_COLON_COLON, - STATE(3670), 2, + ACTIONS(7398), 1, + sym_identifier, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [99065] = 4, + [99968] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, + ACTIONS(7400), 1, anon_sym_COLON, - STATE(3671), 2, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [99079] = 4, + [99982] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, + ACTIONS(7402), 1, anon_sym_COLON, - STATE(3672), 2, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [99093] = 4, + [99996] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, + ACTIONS(7404), 1, anon_sym_COLON, - STATE(3673), 2, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [99107] = 4, + [100010] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, + ACTIONS(7406), 1, anon_sym_SEMI, - STATE(3674), 2, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [99121] = 4, + [100024] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, + ACTIONS(4616), 1, anon_sym_fn, - STATE(3675), 2, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [99135] = 4, + [100038] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(7408), 1, anon_sym_SEMI, - STATE(3676), 2, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [99149] = 4, + [100052] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - sym_identifier, - STATE(3677), 2, + ACTIONS(7410), 1, + anon_sym_EQ_GT, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [99163] = 4, + [100066] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, + ACTIONS(7412), 1, sym_identifier, - STATE(3678), 2, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [99177] = 4, + [100080] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, + ACTIONS(6774), 1, anon_sym_SEMI, - STATE(3679), 2, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [99191] = 4, + [100094] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3996), 1, - anon_sym_COLON_COLON, - STATE(3680), 2, + ACTIONS(7414), 1, + sym_identifier, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [99205] = 4, + [100108] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, + ACTIONS(7416), 1, sym_identifier, - STATE(3681), 2, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [99219] = 4, + [100122] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, + ACTIONS(7418), 1, anon_sym_fn, - STATE(3682), 2, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [99233] = 4, + [100136] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6283), 1, - anon_sym_RBRACE, - STATE(3683), 2, + ACTIONS(6344), 1, + anon_sym_GT, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [99247] = 4, + [100150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, + ACTIONS(7420), 1, sym_identifier, - STATE(3684), 2, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [99261] = 4, + [100164] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, - anon_sym_SEMI, - STATE(3685), 2, + ACTIONS(7422), 1, + sym_identifier, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [99275] = 4, + [100178] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6160), 1, - anon_sym_RBRACE, - STATE(3686), 2, + ACTIONS(7424), 1, + sym_identifier, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [99289] = 4, + [100192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, + ACTIONS(7426), 1, anon_sym_COLON, - STATE(3687), 2, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [99303] = 4, + [100206] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_SEMI, - STATE(3688), 2, + ACTIONS(7428), 1, + sym_identifier, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [99317] = 4, + [100220] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, + ACTIONS(7430), 1, sym_identifier, - STATE(3689), 2, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [99331] = 4, + [100234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - sym_raw_string_literal_content, - STATE(3690), 2, + ACTIONS(7432), 1, + sym_identifier, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [99345] = 4, + [100248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6620), 1, + ACTIONS(7434), 1, anon_sym_SEMI, - STATE(3691), 2, - sym_line_comment, - sym_block_comment, - [99359] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - anon_sym_EQ_GT, - STATE(3692), 2, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [99373] = 4, + [100262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_SEMI, - STATE(3693), 2, + ACTIONS(7436), 1, + anon_sym_LBRACK, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [99387] = 4, + [100276] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - sym_identifier, - STATE(3694), 2, + ACTIONS(7438), 1, + sym__raw_string_literal_end, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [99401] = 1, - ACTIONS(7358), 1, + [100290] = 1, + ACTIONS(7440), 1, ts_builtin_sym_end, - [99405] = 1, - ACTIONS(7360), 1, + [100294] = 1, + ACTIONS(7442), 1, ts_builtin_sym_end, - [99409] = 1, - ACTIONS(7362), 1, + [100298] = 1, + ACTIONS(7444), 1, ts_builtin_sym_end, - [99413] = 1, - ACTIONS(7364), 1, + [100302] = 1, + ACTIONS(7446), 1, ts_builtin_sym_end, - [99417] = 1, - ACTIONS(7366), 1, + [100306] = 1, + ACTIONS(7448), 1, ts_builtin_sym_end, - [99421] = 1, - ACTIONS(7368), 1, + [100310] = 1, + ACTIONS(7450), 1, ts_builtin_sym_end, - [99425] = 1, - ACTIONS(7370), 1, + [100314] = 1, + ACTIONS(7452), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1018)] = 0, - [SMALL_STATE(1019)] = 75, - [SMALL_STATE(1020)] = 147, - [SMALL_STATE(1021)] = 217, - [SMALL_STATE(1022)] = 317, - [SMALL_STATE(1023)] = 417, - [SMALL_STATE(1024)] = 517, - [SMALL_STATE(1025)] = 594, - [SMALL_STATE(1026)] = 673, - [SMALL_STATE(1027)] = 737, - [SMALL_STATE(1028)] = 801, - [SMALL_STATE(1029)] = 865, - [SMALL_STATE(1030)] = 929, - [SMALL_STATE(1031)] = 993, - [SMALL_STATE(1032)] = 1057, - [SMALL_STATE(1033)] = 1121, - [SMALL_STATE(1034)] = 1195, - [SMALL_STATE(1035)] = 1269, - [SMALL_STATE(1036)] = 1343, - [SMALL_STATE(1037)] = 1407, - [SMALL_STATE(1038)] = 1475, - [SMALL_STATE(1039)] = 1539, - [SMALL_STATE(1040)] = 1610, - [SMALL_STATE(1041)] = 1673, - [SMALL_STATE(1042)] = 1740, - [SMALL_STATE(1043)] = 1803, - [SMALL_STATE(1044)] = 1874, - [SMALL_STATE(1045)] = 1941, - [SMALL_STATE(1046)] = 2008, - [SMALL_STATE(1047)] = 2079, - [SMALL_STATE(1048)] = 2146, - [SMALL_STATE(1049)] = 2209, - [SMALL_STATE(1050)] = 2272, - [SMALL_STATE(1051)] = 2343, - [SMALL_STATE(1052)] = 2406, - [SMALL_STATE(1053)] = 2468, - [SMALL_STATE(1054)] = 2568, - [SMALL_STATE(1055)] = 2674, - [SMALL_STATE(1056)] = 2744, - [SMALL_STATE(1057)] = 2812, - [SMALL_STATE(1058)] = 2876, - [SMALL_STATE(1059)] = 2982, - [SMALL_STATE(1060)] = 3048, - [SMALL_STATE(1061)] = 3110, - [SMALL_STATE(1062)] = 3216, - [SMALL_STATE(1063)] = 3322, - [SMALL_STATE(1064)] = 3386, - [SMALL_STATE(1065)] = 3448, - [SMALL_STATE(1066)] = 3554, - [SMALL_STATE(1067)] = 3660, - [SMALL_STATE(1068)] = 3760, - [SMALL_STATE(1069)] = 3822, - [SMALL_STATE(1070)] = 3883, - [SMALL_STATE(1071)] = 3944, - [SMALL_STATE(1072)] = 4005, - [SMALL_STATE(1073)] = 4066, - [SMALL_STATE(1074)] = 4127, - [SMALL_STATE(1075)] = 4188, - [SMALL_STATE(1076)] = 4249, - [SMALL_STATE(1077)] = 4310, - [SMALL_STATE(1078)] = 4371, - [SMALL_STATE(1079)] = 4432, - [SMALL_STATE(1080)] = 4493, - [SMALL_STATE(1081)] = 4554, - [SMALL_STATE(1082)] = 4615, - [SMALL_STATE(1083)] = 4676, - [SMALL_STATE(1084)] = 4737, - [SMALL_STATE(1085)] = 4800, - [SMALL_STATE(1086)] = 4861, - [SMALL_STATE(1087)] = 4924, - [SMALL_STATE(1088)] = 4985, - [SMALL_STATE(1089)] = 5046, - [SMALL_STATE(1090)] = 5107, - [SMALL_STATE(1091)] = 5168, - [SMALL_STATE(1092)] = 5229, - [SMALL_STATE(1093)] = 5290, - [SMALL_STATE(1094)] = 5351, - [SMALL_STATE(1095)] = 5412, - [SMALL_STATE(1096)] = 5473, - [SMALL_STATE(1097)] = 5534, - [SMALL_STATE(1098)] = 5595, - [SMALL_STATE(1099)] = 5656, - [SMALL_STATE(1100)] = 5717, - [SMALL_STATE(1101)] = 5778, - [SMALL_STATE(1102)] = 5839, - [SMALL_STATE(1103)] = 5900, - [SMALL_STATE(1104)] = 5961, - [SMALL_STATE(1105)] = 6022, - [SMALL_STATE(1106)] = 6083, - [SMALL_STATE(1107)] = 6144, - [SMALL_STATE(1108)] = 6205, - [SMALL_STATE(1109)] = 6266, - [SMALL_STATE(1110)] = 6327, - [SMALL_STATE(1111)] = 6388, - [SMALL_STATE(1112)] = 6449, - [SMALL_STATE(1113)] = 6510, - [SMALL_STATE(1114)] = 6571, - [SMALL_STATE(1115)] = 6632, - [SMALL_STATE(1116)] = 6693, - [SMALL_STATE(1117)] = 6754, - [SMALL_STATE(1118)] = 6815, - [SMALL_STATE(1119)] = 6876, - [SMALL_STATE(1120)] = 6937, - [SMALL_STATE(1121)] = 6998, - [SMALL_STATE(1122)] = 7059, - [SMALL_STATE(1123)] = 7120, - [SMALL_STATE(1124)] = 7181, - [SMALL_STATE(1125)] = 7242, - [SMALL_STATE(1126)] = 7303, - [SMALL_STATE(1127)] = 7364, - [SMALL_STATE(1128)] = 7425, - [SMALL_STATE(1129)] = 7486, - [SMALL_STATE(1130)] = 7547, - [SMALL_STATE(1131)] = 7608, - [SMALL_STATE(1132)] = 7669, - [SMALL_STATE(1133)] = 7730, - [SMALL_STATE(1134)] = 7791, - [SMALL_STATE(1135)] = 7852, - [SMALL_STATE(1136)] = 7913, - [SMALL_STATE(1137)] = 7974, - [SMALL_STATE(1138)] = 8035, - [SMALL_STATE(1139)] = 8096, - [SMALL_STATE(1140)] = 8157, - [SMALL_STATE(1141)] = 8218, - [SMALL_STATE(1142)] = 8279, - [SMALL_STATE(1143)] = 8340, - [SMALL_STATE(1144)] = 8401, - [SMALL_STATE(1145)] = 8462, - [SMALL_STATE(1146)] = 8523, - [SMALL_STATE(1147)] = 8584, - [SMALL_STATE(1148)] = 8645, - [SMALL_STATE(1149)] = 8706, - [SMALL_STATE(1150)] = 8767, - [SMALL_STATE(1151)] = 8828, - [SMALL_STATE(1152)] = 8889, - [SMALL_STATE(1153)] = 8950, - [SMALL_STATE(1154)] = 9011, - [SMALL_STATE(1155)] = 9072, - [SMALL_STATE(1156)] = 9133, - [SMALL_STATE(1157)] = 9194, - [SMALL_STATE(1158)] = 9255, - [SMALL_STATE(1159)] = 9316, - [SMALL_STATE(1160)] = 9377, - [SMALL_STATE(1161)] = 9438, - [SMALL_STATE(1162)] = 9499, - [SMALL_STATE(1163)] = 9560, - [SMALL_STATE(1164)] = 9621, - [SMALL_STATE(1165)] = 9682, - [SMALL_STATE(1166)] = 9743, - [SMALL_STATE(1167)] = 9804, - [SMALL_STATE(1168)] = 9865, - [SMALL_STATE(1169)] = 9926, - [SMALL_STATE(1170)] = 9987, - [SMALL_STATE(1171)] = 10048, - [SMALL_STATE(1172)] = 10109, - [SMALL_STATE(1173)] = 10170, - [SMALL_STATE(1174)] = 10231, - [SMALL_STATE(1175)] = 10292, - [SMALL_STATE(1176)] = 10353, - [SMALL_STATE(1177)] = 10414, - [SMALL_STATE(1178)] = 10475, - [SMALL_STATE(1179)] = 10536, - [SMALL_STATE(1180)] = 10597, - [SMALL_STATE(1181)] = 10658, - [SMALL_STATE(1182)] = 10719, - [SMALL_STATE(1183)] = 10780, - [SMALL_STATE(1184)] = 10841, - [SMALL_STATE(1185)] = 10902, - [SMALL_STATE(1186)] = 10963, - [SMALL_STATE(1187)] = 11024, - [SMALL_STATE(1188)] = 11085, - [SMALL_STATE(1189)] = 11146, - [SMALL_STATE(1190)] = 11207, - [SMALL_STATE(1191)] = 11268, - [SMALL_STATE(1192)] = 11329, - [SMALL_STATE(1193)] = 11390, - [SMALL_STATE(1194)] = 11451, - [SMALL_STATE(1195)] = 11512, - [SMALL_STATE(1196)] = 11573, - [SMALL_STATE(1197)] = 11634, - [SMALL_STATE(1198)] = 11695, - [SMALL_STATE(1199)] = 11756, - [SMALL_STATE(1200)] = 11817, - [SMALL_STATE(1201)] = 11878, - [SMALL_STATE(1202)] = 11939, - [SMALL_STATE(1203)] = 12000, - [SMALL_STATE(1204)] = 12061, - [SMALL_STATE(1205)] = 12122, - [SMALL_STATE(1206)] = 12183, - [SMALL_STATE(1207)] = 12244, - [SMALL_STATE(1208)] = 12305, - [SMALL_STATE(1209)] = 12366, - [SMALL_STATE(1210)] = 12427, - [SMALL_STATE(1211)] = 12488, - [SMALL_STATE(1212)] = 12549, - [SMALL_STATE(1213)] = 12610, - [SMALL_STATE(1214)] = 12671, - [SMALL_STATE(1215)] = 12732, - [SMALL_STATE(1216)] = 12793, - [SMALL_STATE(1217)] = 12854, - [SMALL_STATE(1218)] = 12915, - [SMALL_STATE(1219)] = 12976, - [SMALL_STATE(1220)] = 13037, - [SMALL_STATE(1221)] = 13098, - [SMALL_STATE(1222)] = 13159, - [SMALL_STATE(1223)] = 13220, - [SMALL_STATE(1224)] = 13281, - [SMALL_STATE(1225)] = 13342, - [SMALL_STATE(1226)] = 13403, - [SMALL_STATE(1227)] = 13464, - [SMALL_STATE(1228)] = 13525, - [SMALL_STATE(1229)] = 13586, - [SMALL_STATE(1230)] = 13647, - [SMALL_STATE(1231)] = 13708, - [SMALL_STATE(1232)] = 13769, - [SMALL_STATE(1233)] = 13830, - [SMALL_STATE(1234)] = 13891, - [SMALL_STATE(1235)] = 13952, - [SMALL_STATE(1236)] = 14013, - [SMALL_STATE(1237)] = 14074, - [SMALL_STATE(1238)] = 14135, - [SMALL_STATE(1239)] = 14196, - [SMALL_STATE(1240)] = 14257, - [SMALL_STATE(1241)] = 14318, - [SMALL_STATE(1242)] = 14379, - [SMALL_STATE(1243)] = 14440, - [SMALL_STATE(1244)] = 14501, - [SMALL_STATE(1245)] = 14562, - [SMALL_STATE(1246)] = 14623, - [SMALL_STATE(1247)] = 14684, - [SMALL_STATE(1248)] = 14745, - [SMALL_STATE(1249)] = 14806, - [SMALL_STATE(1250)] = 14867, - [SMALL_STATE(1251)] = 14928, - [SMALL_STATE(1252)] = 14989, - [SMALL_STATE(1253)] = 15050, - [SMALL_STATE(1254)] = 15111, - [SMALL_STATE(1255)] = 15172, - [SMALL_STATE(1256)] = 15233, - [SMALL_STATE(1257)] = 15294, - [SMALL_STATE(1258)] = 15355, - [SMALL_STATE(1259)] = 15416, - [SMALL_STATE(1260)] = 15477, - [SMALL_STATE(1261)] = 15538, - [SMALL_STATE(1262)] = 15599, - [SMALL_STATE(1263)] = 15660, - [SMALL_STATE(1264)] = 15721, - [SMALL_STATE(1265)] = 15782, - [SMALL_STATE(1266)] = 15843, - [SMALL_STATE(1267)] = 15904, - [SMALL_STATE(1268)] = 15965, - [SMALL_STATE(1269)] = 16026, - [SMALL_STATE(1270)] = 16087, - [SMALL_STATE(1271)] = 16148, - [SMALL_STATE(1272)] = 16209, - [SMALL_STATE(1273)] = 16270, - [SMALL_STATE(1274)] = 16331, - [SMALL_STATE(1275)] = 16392, - [SMALL_STATE(1276)] = 16453, - [SMALL_STATE(1277)] = 16514, - [SMALL_STATE(1278)] = 16575, - [SMALL_STATE(1279)] = 16636, - [SMALL_STATE(1280)] = 16697, - [SMALL_STATE(1281)] = 16758, - [SMALL_STATE(1282)] = 16819, - [SMALL_STATE(1283)] = 16880, - [SMALL_STATE(1284)] = 16941, - [SMALL_STATE(1285)] = 17002, - [SMALL_STATE(1286)] = 17063, - [SMALL_STATE(1287)] = 17124, - [SMALL_STATE(1288)] = 17185, - [SMALL_STATE(1289)] = 17246, - [SMALL_STATE(1290)] = 17307, - [SMALL_STATE(1291)] = 17368, - [SMALL_STATE(1292)] = 17429, - [SMALL_STATE(1293)] = 17490, - [SMALL_STATE(1294)] = 17551, - [SMALL_STATE(1295)] = 17644, - [SMALL_STATE(1296)] = 17707, - [SMALL_STATE(1297)] = 17770, - [SMALL_STATE(1298)] = 17833, - [SMALL_STATE(1299)] = 17894, - [SMALL_STATE(1300)] = 17955, - [SMALL_STATE(1301)] = 18018, - [SMALL_STATE(1302)] = 18079, - [SMALL_STATE(1303)] = 18140, - [SMALL_STATE(1304)] = 18215, - [SMALL_STATE(1305)] = 18276, - [SMALL_STATE(1306)] = 18337, - [SMALL_STATE(1307)] = 18398, - [SMALL_STATE(1308)] = 18491, - [SMALL_STATE(1309)] = 18552, - [SMALL_STATE(1310)] = 18645, - [SMALL_STATE(1311)] = 18706, - [SMALL_STATE(1312)] = 18767, - [SMALL_STATE(1313)] = 18828, - [SMALL_STATE(1314)] = 18889, - [SMALL_STATE(1315)] = 18950, - [SMALL_STATE(1316)] = 19013, - [SMALL_STATE(1317)] = 19078, - [SMALL_STATE(1318)] = 19141, - [SMALL_STATE(1319)] = 19204, - [SMALL_STATE(1320)] = 19267, - [SMALL_STATE(1321)] = 19330, - [SMALL_STATE(1322)] = 19391, - [SMALL_STATE(1323)] = 19454, - [SMALL_STATE(1324)] = 19519, - [SMALL_STATE(1325)] = 19580, - [SMALL_STATE(1326)] = 19641, - [SMALL_STATE(1327)] = 19702, - [SMALL_STATE(1328)] = 19763, - [SMALL_STATE(1329)] = 19824, - [SMALL_STATE(1330)] = 19885, - [SMALL_STATE(1331)] = 19946, - [SMALL_STATE(1332)] = 20009, - [SMALL_STATE(1333)] = 20070, - [SMALL_STATE(1334)] = 20131, - [SMALL_STATE(1335)] = 20192, - [SMALL_STATE(1336)] = 20253, - [SMALL_STATE(1337)] = 20328, - [SMALL_STATE(1338)] = 20389, - [SMALL_STATE(1339)] = 20450, - [SMALL_STATE(1340)] = 20511, - [SMALL_STATE(1341)] = 20572, - [SMALL_STATE(1342)] = 20633, - [SMALL_STATE(1343)] = 20694, - [SMALL_STATE(1344)] = 20755, - [SMALL_STATE(1345)] = 20818, - [SMALL_STATE(1346)] = 20879, - [SMALL_STATE(1347)] = 20944, - [SMALL_STATE(1348)] = 21005, - [SMALL_STATE(1349)] = 21066, - [SMALL_STATE(1350)] = 21127, - [SMALL_STATE(1351)] = 21188, - [SMALL_STATE(1352)] = 21251, - [SMALL_STATE(1353)] = 21314, - [SMALL_STATE(1354)] = 21377, - [SMALL_STATE(1355)] = 21440, - [SMALL_STATE(1356)] = 21501, - [SMALL_STATE(1357)] = 21562, - [SMALL_STATE(1358)] = 21623, - [SMALL_STATE(1359)] = 21684, - [SMALL_STATE(1360)] = 21745, - [SMALL_STATE(1361)] = 21806, - [SMALL_STATE(1362)] = 21867, - [SMALL_STATE(1363)] = 21928, - [SMALL_STATE(1364)] = 21989, - [SMALL_STATE(1365)] = 22050, - [SMALL_STATE(1366)] = 22111, - [SMALL_STATE(1367)] = 22172, - [SMALL_STATE(1368)] = 22233, - [SMALL_STATE(1369)] = 22294, - [SMALL_STATE(1370)] = 22355, - [SMALL_STATE(1371)] = 22416, - [SMALL_STATE(1372)] = 22477, - [SMALL_STATE(1373)] = 22538, - [SMALL_STATE(1374)] = 22599, - [SMALL_STATE(1375)] = 22660, - [SMALL_STATE(1376)] = 22721, - [SMALL_STATE(1377)] = 22782, - [SMALL_STATE(1378)] = 22843, - [SMALL_STATE(1379)] = 22904, - [SMALL_STATE(1380)] = 22964, - [SMALL_STATE(1381)] = 23024, - [SMALL_STATE(1382)] = 23084, - [SMALL_STATE(1383)] = 23144, - [SMALL_STATE(1384)] = 23204, - [SMALL_STATE(1385)] = 23264, - [SMALL_STATE(1386)] = 23324, - [SMALL_STATE(1387)] = 23384, - [SMALL_STATE(1388)] = 23444, - [SMALL_STATE(1389)] = 23504, - [SMALL_STATE(1390)] = 23564, - [SMALL_STATE(1391)] = 23638, - [SMALL_STATE(1392)] = 23734, - [SMALL_STATE(1393)] = 23794, - [SMALL_STATE(1394)] = 23854, - [SMALL_STATE(1395)] = 23914, - [SMALL_STATE(1396)] = 23974, - [SMALL_STATE(1397)] = 24034, - [SMALL_STATE(1398)] = 24094, - [SMALL_STATE(1399)] = 24154, - [SMALL_STATE(1400)] = 24220, - [SMALL_STATE(1401)] = 24280, - [SMALL_STATE(1402)] = 24340, - [SMALL_STATE(1403)] = 24400, - [SMALL_STATE(1404)] = 24460, - [SMALL_STATE(1405)] = 24520, - [SMALL_STATE(1406)] = 24580, - [SMALL_STATE(1407)] = 24640, - [SMALL_STATE(1408)] = 24700, - [SMALL_STATE(1409)] = 24760, - [SMALL_STATE(1410)] = 24820, - [SMALL_STATE(1411)] = 24880, - [SMALL_STATE(1412)] = 24940, - [SMALL_STATE(1413)] = 25000, - [SMALL_STATE(1414)] = 25060, - [SMALL_STATE(1415)] = 25126, - [SMALL_STATE(1416)] = 25186, - [SMALL_STATE(1417)] = 25246, - [SMALL_STATE(1418)] = 25306, - [SMALL_STATE(1419)] = 25366, - [SMALL_STATE(1420)] = 25426, - [SMALL_STATE(1421)] = 25486, - [SMALL_STATE(1422)] = 25546, - [SMALL_STATE(1423)] = 25606, - [SMALL_STATE(1424)] = 25666, - [SMALL_STATE(1425)] = 25726, - [SMALL_STATE(1426)] = 25786, - [SMALL_STATE(1427)] = 25846, - [SMALL_STATE(1428)] = 25906, - [SMALL_STATE(1429)] = 25966, - [SMALL_STATE(1430)] = 26026, - [SMALL_STATE(1431)] = 26086, - [SMALL_STATE(1432)] = 26146, - [SMALL_STATE(1433)] = 26206, - [SMALL_STATE(1434)] = 26266, - [SMALL_STATE(1435)] = 26326, - [SMALL_STATE(1436)] = 26386, - [SMALL_STATE(1437)] = 26446, - [SMALL_STATE(1438)] = 26506, - [SMALL_STATE(1439)] = 26566, - [SMALL_STATE(1440)] = 26626, - [SMALL_STATE(1441)] = 26686, - [SMALL_STATE(1442)] = 26746, - [SMALL_STATE(1443)] = 26808, - [SMALL_STATE(1444)] = 26868, - [SMALL_STATE(1445)] = 26928, - [SMALL_STATE(1446)] = 26988, - [SMALL_STATE(1447)] = 27084, - [SMALL_STATE(1448)] = 27144, - [SMALL_STATE(1449)] = 27204, - [SMALL_STATE(1450)] = 27264, - [SMALL_STATE(1451)] = 27324, - [SMALL_STATE(1452)] = 27384, - [SMALL_STATE(1453)] = 27444, - [SMALL_STATE(1454)] = 27504, - [SMALL_STATE(1455)] = 27564, - [SMALL_STATE(1456)] = 27624, - [SMALL_STATE(1457)] = 27684, - [SMALL_STATE(1458)] = 27744, - [SMALL_STATE(1459)] = 27804, - [SMALL_STATE(1460)] = 27872, - [SMALL_STATE(1461)] = 27932, - [SMALL_STATE(1462)] = 27992, - [SMALL_STATE(1463)] = 28052, - [SMALL_STATE(1464)] = 28114, - [SMALL_STATE(1465)] = 28174, - [SMALL_STATE(1466)] = 28234, - [SMALL_STATE(1467)] = 28294, - [SMALL_STATE(1468)] = 28354, - [SMALL_STATE(1469)] = 28414, - [SMALL_STATE(1470)] = 28474, - [SMALL_STATE(1471)] = 28534, - [SMALL_STATE(1472)] = 28594, - [SMALL_STATE(1473)] = 28654, - [SMALL_STATE(1474)] = 28714, - [SMALL_STATE(1475)] = 28778, - [SMALL_STATE(1476)] = 28838, - [SMALL_STATE(1477)] = 28898, - [SMALL_STATE(1478)] = 28962, - [SMALL_STATE(1479)] = 29028, - [SMALL_STATE(1480)] = 29088, - [SMALL_STATE(1481)] = 29148, - [SMALL_STATE(1482)] = 29208, - [SMALL_STATE(1483)] = 29268, - [SMALL_STATE(1484)] = 29328, - [SMALL_STATE(1485)] = 29388, - [SMALL_STATE(1486)] = 29448, - [SMALL_STATE(1487)] = 29508, - [SMALL_STATE(1488)] = 29568, - [SMALL_STATE(1489)] = 29628, - [SMALL_STATE(1490)] = 29688, - [SMALL_STATE(1491)] = 29748, - [SMALL_STATE(1492)] = 29808, - [SMALL_STATE(1493)] = 29874, - [SMALL_STATE(1494)] = 29934, - [SMALL_STATE(1495)] = 29994, - [SMALL_STATE(1496)] = 30054, - [SMALL_STATE(1497)] = 30114, - [SMALL_STATE(1498)] = 30174, - [SMALL_STATE(1499)] = 30234, - [SMALL_STATE(1500)] = 30294, - [SMALL_STATE(1501)] = 30354, - [SMALL_STATE(1502)] = 30414, - [SMALL_STATE(1503)] = 30474, - [SMALL_STATE(1504)] = 30534, - [SMALL_STATE(1505)] = 30633, - [SMALL_STATE(1506)] = 30732, - [SMALL_STATE(1507)] = 30793, - [SMALL_STATE(1508)] = 30892, - [SMALL_STATE(1509)] = 30953, - [SMALL_STATE(1510)] = 31024, - [SMALL_STATE(1511)] = 31093, - [SMALL_STATE(1512)] = 31179, - [SMALL_STATE(1513)] = 31253, - [SMALL_STATE(1514)] = 31343, - [SMALL_STATE(1515)] = 31433, - [SMALL_STATE(1516)] = 31511, - [SMALL_STATE(1517)] = 31583, - [SMALL_STATE(1518)] = 31669, - [SMALL_STATE(1519)] = 31761, - [SMALL_STATE(1520)] = 31847, - [SMALL_STATE(1521)] = 31933, - [SMALL_STATE(1522)] = 32003, - [SMALL_STATE(1523)] = 32093, - [SMALL_STATE(1524)] = 32183, - [SMALL_STATE(1525)] = 32269, - [SMALL_STATE(1526)] = 32345, - [SMALL_STATE(1527)] = 32435, - [SMALL_STATE(1528)] = 32517, - [SMALL_STATE(1529)] = 32603, - [SMALL_STATE(1530)] = 32695, - [SMALL_STATE(1531)] = 32785, - [SMALL_STATE(1532)] = 32869, - [SMALL_STATE(1533)] = 32955, - [SMALL_STATE(1534)] = 33041, - [SMALL_STATE(1535)] = 33107, - [SMALL_STATE(1536)] = 33199, - [SMALL_STATE(1537)] = 33269, - [SMALL_STATE(1538)] = 33337, - [SMALL_STATE(1539)] = 33394, - [SMALL_STATE(1540)] = 33461, - [SMALL_STATE(1541)] = 33520, - [SMALL_STATE(1542)] = 33579, - [SMALL_STATE(1543)] = 33646, - [SMALL_STATE(1544)] = 33703, - [SMALL_STATE(1545)] = 33770, - [SMALL_STATE(1546)] = 33833, - [SMALL_STATE(1547)] = 33890, - [SMALL_STATE(1548)] = 33955, - [SMALL_STATE(1549)] = 34018, - [SMALL_STATE(1550)] = 34078, - [SMALL_STATE(1551)] = 34136, - [SMALL_STATE(1552)] = 34196, - [SMALL_STATE(1553)] = 34252, - [SMALL_STATE(1554)] = 34316, - [SMALL_STATE(1555)] = 34374, - [SMALL_STATE(1556)] = 34438, - [SMALL_STATE(1557)] = 34502, - [SMALL_STATE(1558)] = 34560, - [SMALL_STATE(1559)] = 34624, - [SMALL_STATE(1560)] = 34680, - [SMALL_STATE(1561)] = 34740, - [SMALL_STATE(1562)] = 34798, - [SMALL_STATE(1563)] = 34858, - [SMALL_STATE(1564)] = 34918, - [SMALL_STATE(1565)] = 34978, - [SMALL_STATE(1566)] = 35038, - [SMALL_STATE(1567)] = 35094, - [SMALL_STATE(1568)] = 35150, - [SMALL_STATE(1569)] = 35245, - [SMALL_STATE(1570)] = 35340, - [SMALL_STATE(1571)] = 35395, - [SMALL_STATE(1572)] = 35454, - [SMALL_STATE(1573)] = 35509, - [SMALL_STATE(1574)] = 35564, - [SMALL_STATE(1575)] = 35623, - [SMALL_STATE(1576)] = 35718, - [SMALL_STATE(1577)] = 35807, - [SMALL_STATE(1578)] = 35902, - [SMALL_STATE(1579)] = 35957, - [SMALL_STATE(1580)] = 36052, - [SMALL_STATE(1581)] = 36147, - [SMALL_STATE(1582)] = 36242, - [SMALL_STATE(1583)] = 36299, - [SMALL_STATE(1584)] = 36388, - [SMALL_STATE(1585)] = 36445, - [SMALL_STATE(1586)] = 36502, - [SMALL_STATE(1587)] = 36597, - [SMALL_STATE(1588)] = 36656, - [SMALL_STATE(1589)] = 36751, - [SMALL_STATE(1590)] = 36806, - [SMALL_STATE(1591)] = 36861, - [SMALL_STATE(1592)] = 36918, - [SMALL_STATE(1593)] = 36975, - [SMALL_STATE(1594)] = 37070, - [SMALL_STATE(1595)] = 37159, - [SMALL_STATE(1596)] = 37254, - [SMALL_STATE(1597)] = 37311, - [SMALL_STATE(1598)] = 37406, - [SMALL_STATE(1599)] = 37461, - [SMALL_STATE(1600)] = 37520, - [SMALL_STATE(1601)] = 37577, - [SMALL_STATE(1602)] = 37632, - [SMALL_STATE(1603)] = 37686, - [SMALL_STATE(1604)] = 37740, - [SMALL_STATE(1605)] = 37794, - [SMALL_STATE(1606)] = 37848, - [SMALL_STATE(1607)] = 37904, - [SMALL_STATE(1608)] = 37960, - [SMALL_STATE(1609)] = 38016, - [SMALL_STATE(1610)] = 38072, - [SMALL_STATE(1611)] = 38128, - [SMALL_STATE(1612)] = 38214, - [SMALL_STATE(1613)] = 38302, - [SMALL_STATE(1614)] = 38356, - [SMALL_STATE(1615)] = 38412, - [SMALL_STATE(1616)] = 38468, - [SMALL_STATE(1617)] = 38524, - [SMALL_STATE(1618)] = 38578, - [SMALL_STATE(1619)] = 38634, - [SMALL_STATE(1620)] = 38690, - [SMALL_STATE(1621)] = 38754, - [SMALL_STATE(1622)] = 38808, - [SMALL_STATE(1623)] = 38878, - [SMALL_STATE(1624)] = 38932, - [SMALL_STATE(1625)] = 39000, - [SMALL_STATE(1626)] = 39072, - [SMALL_STATE(1627)] = 39126, - [SMALL_STATE(1628)] = 39204, - [SMALL_STATE(1629)] = 39284, - [SMALL_STATE(1630)] = 39350, - [SMALL_STATE(1631)] = 39406, - [SMALL_STATE(1632)] = 39492, - [SMALL_STATE(1633)] = 39566, - [SMALL_STATE(1634)] = 39620, - [SMALL_STATE(1635)] = 39674, - [SMALL_STATE(1636)] = 39756, - [SMALL_STATE(1637)] = 39812, - [SMALL_STATE(1638)] = 39904, - [SMALL_STATE(1639)] = 39958, - [SMALL_STATE(1640)] = 40014, - [SMALL_STATE(1641)] = 40068, - [SMALL_STATE(1642)] = 40122, - [SMALL_STATE(1643)] = 40176, - [SMALL_STATE(1644)] = 40230, - [SMALL_STATE(1645)] = 40288, - [SMALL_STATE(1646)] = 40344, - [SMALL_STATE(1647)] = 40426, - [SMALL_STATE(1648)] = 40512, - [SMALL_STATE(1649)] = 40598, - [SMALL_STATE(1650)] = 40684, - [SMALL_STATE(1651)] = 40772, - [SMALL_STATE(1652)] = 40864, - [SMALL_STATE(1653)] = 40956, - [SMALL_STATE(1654)] = 41048, - [SMALL_STATE(1655)] = 41140, - [SMALL_STATE(1656)] = 41228, - [SMALL_STATE(1657)] = 41316, - [SMALL_STATE(1658)] = 41396, - [SMALL_STATE(1659)] = 41484, - [SMALL_STATE(1660)] = 41576, - [SMALL_STATE(1661)] = 41632, - [SMALL_STATE(1662)] = 41688, - [SMALL_STATE(1663)] = 41774, - [SMALL_STATE(1664)] = 41859, - [SMALL_STATE(1665)] = 41912, - [SMALL_STATE(1666)] = 41965, - [SMALL_STATE(1667)] = 42018, - [SMALL_STATE(1668)] = 42071, - [SMALL_STATE(1669)] = 42156, - [SMALL_STATE(1670)] = 42209, - [SMALL_STATE(1671)] = 42262, - [SMALL_STATE(1672)] = 42315, - [SMALL_STATE(1673)] = 42368, - [SMALL_STATE(1674)] = 42421, - [SMALL_STATE(1675)] = 42474, - [SMALL_STATE(1676)] = 42535, - [SMALL_STATE(1677)] = 42588, - [SMALL_STATE(1678)] = 42675, - [SMALL_STATE(1679)] = 42760, - [SMALL_STATE(1680)] = 42813, - [SMALL_STATE(1681)] = 42866, - [SMALL_STATE(1682)] = 42919, - [SMALL_STATE(1683)] = 42972, - [SMALL_STATE(1684)] = 43025, - [SMALL_STATE(1685)] = 43078, - [SMALL_STATE(1686)] = 43131, - [SMALL_STATE(1687)] = 43184, - [SMALL_STATE(1688)] = 43237, - [SMALL_STATE(1689)] = 43290, - [SMALL_STATE(1690)] = 43353, - [SMALL_STATE(1691)] = 43422, - [SMALL_STATE(1692)] = 43511, - [SMALL_STATE(1693)] = 43578, - [SMALL_STATE(1694)] = 43631, - [SMALL_STATE(1695)] = 43684, - [SMALL_STATE(1696)] = 43737, - [SMALL_STATE(1697)] = 43790, - [SMALL_STATE(1698)] = 43861, - [SMALL_STATE(1699)] = 43914, - [SMALL_STATE(1700)] = 43967, - [SMALL_STATE(1701)] = 44020, - [SMALL_STATE(1702)] = 44097, - [SMALL_STATE(1703)] = 44150, - [SMALL_STATE(1704)] = 44229, - [SMALL_STATE(1705)] = 44294, - [SMALL_STATE(1706)] = 44379, - [SMALL_STATE(1707)] = 44432, - [SMALL_STATE(1708)] = 44519, - [SMALL_STATE(1709)] = 44572, - [SMALL_STATE(1710)] = 44625, - [SMALL_STATE(1711)] = 44710, - [SMALL_STATE(1712)] = 44763, - [SMALL_STATE(1713)] = 44816, - [SMALL_STATE(1714)] = 44869, - [SMALL_STATE(1715)] = 44922, - [SMALL_STATE(1716)] = 45009, - [SMALL_STATE(1717)] = 45062, - [SMALL_STATE(1718)] = 45115, - [SMALL_STATE(1719)] = 45178, - [SMALL_STATE(1720)] = 45247, - [SMALL_STATE(1721)] = 45314, - [SMALL_STATE(1722)] = 45385, - [SMALL_STATE(1723)] = 45462, - [SMALL_STATE(1724)] = 45541, - [SMALL_STATE(1725)] = 45606, - [SMALL_STATE(1726)] = 45691, - [SMALL_STATE(1727)] = 45776, - [SMALL_STATE(1728)] = 45849, - [SMALL_STATE(1729)] = 45930, - [SMALL_STATE(1730)] = 45983, - [SMALL_STATE(1731)] = 46036, - [SMALL_STATE(1732)] = 46089, - [SMALL_STATE(1733)] = 46142, - [SMALL_STATE(1734)] = 46215, - [SMALL_STATE(1735)] = 46268, - [SMALL_STATE(1736)] = 46321, - [SMALL_STATE(1737)] = 46408, - [SMALL_STATE(1738)] = 46461, - [SMALL_STATE(1739)] = 46514, - [SMALL_STATE(1740)] = 46567, - [SMALL_STATE(1741)] = 46626, - [SMALL_STATE(1742)] = 46679, - [SMALL_STATE(1743)] = 46732, - [SMALL_STATE(1744)] = 46785, - [SMALL_STATE(1745)] = 46838, - [SMALL_STATE(1746)] = 46891, - [SMALL_STATE(1747)] = 46944, - [SMALL_STATE(1748)] = 46997, - [SMALL_STATE(1749)] = 47050, - [SMALL_STATE(1750)] = 47103, - [SMALL_STATE(1751)] = 47156, - [SMALL_STATE(1752)] = 47243, - [SMALL_STATE(1753)] = 47296, - [SMALL_STATE(1754)] = 47349, - [SMALL_STATE(1755)] = 47434, - [SMALL_STATE(1756)] = 47521, - [SMALL_STATE(1757)] = 47574, - [SMALL_STATE(1758)] = 47627, - [SMALL_STATE(1759)] = 47716, - [SMALL_STATE(1760)] = 47803, - [SMALL_STATE(1761)] = 47884, - [SMALL_STATE(1762)] = 47937, - [SMALL_STATE(1763)] = 47990, - [SMALL_STATE(1764)] = 48043, - [SMALL_STATE(1765)] = 48096, - [SMALL_STATE(1766)] = 48149, - [SMALL_STATE(1767)] = 48202, - [SMALL_STATE(1768)] = 48255, - [SMALL_STATE(1769)] = 48308, - [SMALL_STATE(1770)] = 48361, - [SMALL_STATE(1771)] = 48438, - [SMALL_STATE(1772)] = 48491, - [SMALL_STATE(1773)] = 48544, - [SMALL_STATE(1774)] = 48597, - [SMALL_STATE(1775)] = 48650, - [SMALL_STATE(1776)] = 48737, - [SMALL_STATE(1777)] = 48824, - [SMALL_STATE(1778)] = 48877, - [SMALL_STATE(1779)] = 48966, - [SMALL_STATE(1780)] = 49019, - [SMALL_STATE(1781)] = 49108, - [SMALL_STATE(1782)] = 49195, - [SMALL_STATE(1783)] = 49254, - [SMALL_STATE(1784)] = 49313, - [SMALL_STATE(1785)] = 49366, - [SMALL_STATE(1786)] = 49419, - [SMALL_STATE(1787)] = 49508, - [SMALL_STATE(1788)] = 49561, - [SMALL_STATE(1789)] = 49614, - [SMALL_STATE(1790)] = 49703, - [SMALL_STATE(1791)] = 49756, - [SMALL_STATE(1792)] = 49843, - [SMALL_STATE(1793)] = 49896, - [SMALL_STATE(1794)] = 49985, - [SMALL_STATE(1795)] = 50074, - [SMALL_STATE(1796)] = 50127, - [SMALL_STATE(1797)] = 50216, - [SMALL_STATE(1798)] = 50297, - [SMALL_STATE(1799)] = 50386, - [SMALL_STATE(1800)] = 50473, - [SMALL_STATE(1801)] = 50562, - [SMALL_STATE(1802)] = 50651, - [SMALL_STATE(1803)] = 50740, - [SMALL_STATE(1804)] = 50829, - [SMALL_STATE(1805)] = 50882, - [SMALL_STATE(1806)] = 50971, - [SMALL_STATE(1807)] = 51060, - [SMALL_STATE(1808)] = 51113, - [SMALL_STATE(1809)] = 51202, - [SMALL_STATE(1810)] = 51291, - [SMALL_STATE(1811)] = 51380, - [SMALL_STATE(1812)] = 51469, - [SMALL_STATE(1813)] = 51554, - [SMALL_STATE(1814)] = 51639, - [SMALL_STATE(1815)] = 51728, - [SMALL_STATE(1816)] = 51781, - [SMALL_STATE(1817)] = 51834, - [SMALL_STATE(1818)] = 51923, - [SMALL_STATE(1819)] = 52010, - [SMALL_STATE(1820)] = 52063, - [SMALL_STATE(1821)] = 52116, - [SMALL_STATE(1822)] = 52205, - [SMALL_STATE(1823)] = 52258, - [SMALL_STATE(1824)] = 52339, - [SMALL_STATE(1825)] = 52424, - [SMALL_STATE(1826)] = 52513, - [SMALL_STATE(1827)] = 52598, - [SMALL_STATE(1828)] = 52683, - [SMALL_STATE(1829)] = 52772, - [SMALL_STATE(1830)] = 52825, - [SMALL_STATE(1831)] = 52878, - [SMALL_STATE(1832)] = 52931, - [SMALL_STATE(1833)] = 52984, - [SMALL_STATE(1834)] = 53037, - [SMALL_STATE(1835)] = 53090, - [SMALL_STATE(1836)] = 53179, - [SMALL_STATE(1837)] = 53232, - [SMALL_STATE(1838)] = 53319, - [SMALL_STATE(1839)] = 53408, - [SMALL_STATE(1840)] = 53497, - [SMALL_STATE(1841)] = 53586, - [SMALL_STATE(1842)] = 53673, - [SMALL_STATE(1843)] = 53762, - [SMALL_STATE(1844)] = 53851, - [SMALL_STATE(1845)] = 53938, - [SMALL_STATE(1846)] = 53991, - [SMALL_STATE(1847)] = 54080, - [SMALL_STATE(1848)] = 54169, - [SMALL_STATE(1849)] = 54258, - [SMALL_STATE(1850)] = 54347, - [SMALL_STATE(1851)] = 54400, - [SMALL_STATE(1852)] = 54453, - [SMALL_STATE(1853)] = 54542, - [SMALL_STATE(1854)] = 54595, - [SMALL_STATE(1855)] = 54684, - [SMALL_STATE(1856)] = 54737, - [SMALL_STATE(1857)] = 54826, - [SMALL_STATE(1858)] = 54915, - [SMALL_STATE(1859)] = 55004, - [SMALL_STATE(1860)] = 55093, - [SMALL_STATE(1861)] = 55182, - [SMALL_STATE(1862)] = 55241, - [SMALL_STATE(1863)] = 55330, - [SMALL_STATE(1864)] = 55419, - [SMALL_STATE(1865)] = 55508, - [SMALL_STATE(1866)] = 55597, - [SMALL_STATE(1867)] = 55686, - [SMALL_STATE(1868)] = 55775, - [SMALL_STATE(1869)] = 55864, - [SMALL_STATE(1870)] = 55953, - [SMALL_STATE(1871)] = 56006, - [SMALL_STATE(1872)] = 56059, - [SMALL_STATE(1873)] = 56146, - [SMALL_STATE(1874)] = 56233, - [SMALL_STATE(1875)] = 56286, - [SMALL_STATE(1876)] = 56339, - [SMALL_STATE(1877)] = 56392, - [SMALL_STATE(1878)] = 56445, - [SMALL_STATE(1879)] = 56522, - [SMALL_STATE(1880)] = 56609, - [SMALL_STATE(1881)] = 56694, - [SMALL_STATE(1882)] = 56768, - [SMALL_STATE(1883)] = 56854, - [SMALL_STATE(1884)] = 56940, - [SMALL_STATE(1885)] = 57026, - [SMALL_STATE(1886)] = 57100, - [SMALL_STATE(1887)] = 57186, - [SMALL_STATE(1888)] = 57270, - [SMALL_STATE(1889)] = 57356, - [SMALL_STATE(1890)] = 57442, - [SMALL_STATE(1891)] = 57528, - [SMALL_STATE(1892)] = 57614, - [SMALL_STATE(1893)] = 57700, - [SMALL_STATE(1894)] = 57786, - [SMALL_STATE(1895)] = 57872, - [SMALL_STATE(1896)] = 57958, - [SMALL_STATE(1897)] = 58044, - [SMALL_STATE(1898)] = 58130, - [SMALL_STATE(1899)] = 58216, - [SMALL_STATE(1900)] = 58302, - [SMALL_STATE(1901)] = 58388, - [SMALL_STATE(1902)] = 58472, - [SMALL_STATE(1903)] = 58558, - [SMALL_STATE(1904)] = 58644, - [SMALL_STATE(1905)] = 58730, - [SMALL_STATE(1906)] = 58804, - [SMALL_STATE(1907)] = 58890, - [SMALL_STATE(1908)] = 58964, - [SMALL_STATE(1909)] = 59050, - [SMALL_STATE(1910)] = 59124, - [SMALL_STATE(1911)] = 59210, - [SMALL_STATE(1912)] = 59296, - [SMALL_STATE(1913)] = 59382, - [SMALL_STATE(1914)] = 59468, - [SMALL_STATE(1915)] = 59554, - [SMALL_STATE(1916)] = 59640, - [SMALL_STATE(1917)] = 59726, - [SMALL_STATE(1918)] = 59812, - [SMALL_STATE(1919)] = 59887, - [SMALL_STATE(1920)] = 59962, - [SMALL_STATE(1921)] = 60037, - [SMALL_STATE(1922)] = 60112, - [SMALL_STATE(1923)] = 60187, - [SMALL_STATE(1924)] = 60262, - [SMALL_STATE(1925)] = 60337, - [SMALL_STATE(1926)] = 60412, - [SMALL_STATE(1927)] = 60459, - [SMALL_STATE(1928)] = 60506, - [SMALL_STATE(1929)] = 60553, - [SMALL_STATE(1930)] = 60615, - [SMALL_STATE(1931)] = 60677, - [SMALL_STATE(1932)] = 60739, - [SMALL_STATE(1933)] = 60801, - [SMALL_STATE(1934)] = 60863, - [SMALL_STATE(1935)] = 60925, - [SMALL_STATE(1936)] = 60987, - [SMALL_STATE(1937)] = 61049, - [SMALL_STATE(1938)] = 61111, - [SMALL_STATE(1939)] = 61170, - [SMALL_STATE(1940)] = 61229, - [SMALL_STATE(1941)] = 61265, - [SMALL_STATE(1942)] = 61301, - [SMALL_STATE(1943)] = 61349, - [SMALL_STATE(1944)] = 61394, - [SMALL_STATE(1945)] = 61431, - [SMALL_STATE(1946)] = 61476, - [SMALL_STATE(1947)] = 61521, - [SMALL_STATE(1948)] = 61558, - [SMALL_STATE(1949)] = 61611, - [SMALL_STATE(1950)] = 61648, - [SMALL_STATE(1951)] = 61685, - [SMALL_STATE(1952)] = 61721, - [SMALL_STATE(1953)] = 61757, - [SMALL_STATE(1954)] = 61797, - [SMALL_STATE(1955)] = 61837, - [SMALL_STATE(1956)] = 61877, - [SMALL_STATE(1957)] = 61911, - [SMALL_STATE(1958)] = 61951, - [SMALL_STATE(1959)] = 61987, - [SMALL_STATE(1960)] = 62021, - [SMALL_STATE(1961)] = 62057, - [SMALL_STATE(1962)] = 62091, - [SMALL_STATE(1963)] = 62125, - [SMALL_STATE(1964)] = 62158, - [SMALL_STATE(1965)] = 62191, - [SMALL_STATE(1966)] = 62224, - [SMALL_STATE(1967)] = 62275, - [SMALL_STATE(1968)] = 62308, - [SMALL_STATE(1969)] = 62339, - [SMALL_STATE(1970)] = 62385, - [SMALL_STATE(1971)] = 62445, - [SMALL_STATE(1972)] = 62505, - [SMALL_STATE(1973)] = 62537, - [SMALL_STATE(1974)] = 62569, - [SMALL_STATE(1975)] = 62601, - [SMALL_STATE(1976)] = 62645, - [SMALL_STATE(1977)] = 62678, - [SMALL_STATE(1978)] = 62707, - [SMALL_STATE(1979)] = 62738, - [SMALL_STATE(1980)] = 62779, - [SMALL_STATE(1981)] = 62812, - [SMALL_STATE(1982)] = 62845, - [SMALL_STATE(1983)] = 62874, - [SMALL_STATE(1984)] = 62903, - [SMALL_STATE(1985)] = 62956, - [SMALL_STATE(1986)] = 62985, - [SMALL_STATE(1987)] = 63038, - [SMALL_STATE(1988)] = 63067, - [SMALL_STATE(1989)] = 63098, - [SMALL_STATE(1990)] = 63127, - [SMALL_STATE(1991)] = 63156, - [SMALL_STATE(1992)] = 63189, - [SMALL_STATE(1993)] = 63222, - [SMALL_STATE(1994)] = 63251, - [SMALL_STATE(1995)] = 63280, - [SMALL_STATE(1996)] = 63335, - [SMALL_STATE(1997)] = 63366, - [SMALL_STATE(1998)] = 63397, - [SMALL_STATE(1999)] = 63428, - [SMALL_STATE(2000)] = 63461, - [SMALL_STATE(2001)] = 63492, - [SMALL_STATE(2002)] = 63535, - [SMALL_STATE(2003)] = 63566, - [SMALL_STATE(2004)] = 63597, - [SMALL_STATE(2005)] = 63625, - [SMALL_STATE(2006)] = 63653, - [SMALL_STATE(2007)] = 63681, - [SMALL_STATE(2008)] = 63709, - [SMALL_STATE(2009)] = 63737, - [SMALL_STATE(2010)] = 63765, - [SMALL_STATE(2011)] = 63793, - [SMALL_STATE(2012)] = 63821, - [SMALL_STATE(2013)] = 63849, - [SMALL_STATE(2014)] = 63879, - [SMALL_STATE(2015)] = 63907, - [SMALL_STATE(2016)] = 63935, - [SMALL_STATE(2017)] = 63963, - [SMALL_STATE(2018)] = 63991, - [SMALL_STATE(2019)] = 64019, - [SMALL_STATE(2020)] = 64049, - [SMALL_STATE(2021)] = 64077, - [SMALL_STATE(2022)] = 64105, - [SMALL_STATE(2023)] = 64133, - [SMALL_STATE(2024)] = 64161, - [SMALL_STATE(2025)] = 64189, - [SMALL_STATE(2026)] = 64217, - [SMALL_STATE(2027)] = 64245, - [SMALL_STATE(2028)] = 64273, - [SMALL_STATE(2029)] = 64301, - [SMALL_STATE(2030)] = 64329, - [SMALL_STATE(2031)] = 64373, - [SMALL_STATE(2032)] = 64401, - [SMALL_STATE(2033)] = 64429, - [SMALL_STATE(2034)] = 64457, - [SMALL_STATE(2035)] = 64485, - [SMALL_STATE(2036)] = 64513, - [SMALL_STATE(2037)] = 64541, - [SMALL_STATE(2038)] = 64569, - [SMALL_STATE(2039)] = 64597, - [SMALL_STATE(2040)] = 64625, - [SMALL_STATE(2041)] = 64653, - [SMALL_STATE(2042)] = 64681, - [SMALL_STATE(2043)] = 64709, - [SMALL_STATE(2044)] = 64737, - [SMALL_STATE(2045)] = 64772, - [SMALL_STATE(2046)] = 64801, - [SMALL_STATE(2047)] = 64830, - [SMALL_STATE(2048)] = 64859, - [SMALL_STATE(2049)] = 64890, - [SMALL_STATE(2050)] = 64922, - [SMALL_STATE(2051)] = 64954, - [SMALL_STATE(2052)] = 64986, - [SMALL_STATE(2053)] = 65018, - [SMALL_STATE(2054)] = 65050, - [SMALL_STATE(2055)] = 65082, - [SMALL_STATE(2056)] = 65114, - [SMALL_STATE(2057)] = 65144, - [SMALL_STATE(2058)] = 65190, - [SMALL_STATE(2059)] = 65222, - [SMALL_STATE(2060)] = 65254, - [SMALL_STATE(2061)] = 65286, - [SMALL_STATE(2062)] = 65318, - [SMALL_STATE(2063)] = 65350, - [SMALL_STATE(2064)] = 65394, - [SMALL_STATE(2065)] = 65422, - [SMALL_STATE(2066)] = 65465, - [SMALL_STATE(2067)] = 65508, - [SMALL_STATE(2068)] = 65551, - [SMALL_STATE(2069)] = 65594, - [SMALL_STATE(2070)] = 65623, - [SMALL_STATE(2071)] = 65652, - [SMALL_STATE(2072)] = 65689, - [SMALL_STATE(2073)] = 65732, - [SMALL_STATE(2074)] = 65775, - [SMALL_STATE(2075)] = 65803, - [SMALL_STATE(2076)] = 65831, - [SMALL_STATE(2077)] = 65855, - [SMALL_STATE(2078)] = 65895, - [SMALL_STATE(2079)] = 65923, - [SMALL_STATE(2080)] = 65951, - [SMALL_STATE(2081)] = 65991, - [SMALL_STATE(2082)] = 66025, - [SMALL_STATE(2083)] = 66053, - [SMALL_STATE(2084)] = 66091, - [SMALL_STATE(2085)] = 66131, - [SMALL_STATE(2086)] = 66171, - [SMALL_STATE(2087)] = 66201, - [SMALL_STATE(2088)] = 66239, - [SMALL_STATE(2089)] = 66279, - [SMALL_STATE(2090)] = 66319, - [SMALL_STATE(2091)] = 66343, - [SMALL_STATE(2092)] = 66377, - [SMALL_STATE(2093)] = 66415, - [SMALL_STATE(2094)] = 66439, - [SMALL_STATE(2095)] = 66467, - [SMALL_STATE(2096)] = 66495, - [SMALL_STATE(2097)] = 66519, - [SMALL_STATE(2098)] = 66547, - [SMALL_STATE(2099)] = 66585, - [SMALL_STATE(2100)] = 66613, - [SMALL_STATE(2101)] = 66653, - [SMALL_STATE(2102)] = 66681, - [SMALL_STATE(2103)] = 66719, - [SMALL_STATE(2104)] = 66747, - [SMALL_STATE(2105)] = 66775, - [SMALL_STATE(2106)] = 66803, - [SMALL_STATE(2107)] = 66831, - [SMALL_STATE(2108)] = 66861, - [SMALL_STATE(2109)] = 66899, - [SMALL_STATE(2110)] = 66929, - [SMALL_STATE(2111)] = 66967, - [SMALL_STATE(2112)] = 67005, - [SMALL_STATE(2113)] = 67043, - [SMALL_STATE(2114)] = 67071, - [SMALL_STATE(2115)] = 67111, - [SMALL_STATE(2116)] = 67151, - [SMALL_STATE(2117)] = 67175, - [SMALL_STATE(2118)] = 67203, - [SMALL_STATE(2119)] = 67243, - [SMALL_STATE(2120)] = 67273, - [SMALL_STATE(2121)] = 67314, - [SMALL_STATE(2122)] = 67351, - [SMALL_STATE(2123)] = 67374, - [SMALL_STATE(2124)] = 67397, - [SMALL_STATE(2125)] = 67420, - [SMALL_STATE(2126)] = 67443, - [SMALL_STATE(2127)] = 67466, - [SMALL_STATE(2128)] = 67503, - [SMALL_STATE(2129)] = 67526, - [SMALL_STATE(2130)] = 67561, - [SMALL_STATE(2131)] = 67584, - [SMALL_STATE(2132)] = 67607, - [SMALL_STATE(2133)] = 67630, - [SMALL_STATE(2134)] = 67653, - [SMALL_STATE(2135)] = 67676, - [SMALL_STATE(2136)] = 67699, - [SMALL_STATE(2137)] = 67722, - [SMALL_STATE(2138)] = 67745, - [SMALL_STATE(2139)] = 67768, - [SMALL_STATE(2140)] = 67805, - [SMALL_STATE(2141)] = 67828, - [SMALL_STATE(2142)] = 67851, - [SMALL_STATE(2143)] = 67874, - [SMALL_STATE(2144)] = 67905, - [SMALL_STATE(2145)] = 67936, - [SMALL_STATE(2146)] = 67959, - [SMALL_STATE(2147)] = 67982, - [SMALL_STATE(2148)] = 68005, - [SMALL_STATE(2149)] = 68046, - [SMALL_STATE(2150)] = 68069, - [SMALL_STATE(2151)] = 68092, - [SMALL_STATE(2152)] = 68115, - [SMALL_STATE(2153)] = 68150, - [SMALL_STATE(2154)] = 68173, - [SMALL_STATE(2155)] = 68204, - [SMALL_STATE(2156)] = 68227, - [SMALL_STATE(2157)] = 68250, - [SMALL_STATE(2158)] = 68273, - [SMALL_STATE(2159)] = 68308, - [SMALL_STATE(2160)] = 68341, - [SMALL_STATE(2161)] = 68364, - [SMALL_STATE(2162)] = 68395, - [SMALL_STATE(2163)] = 68418, - [SMALL_STATE(2164)] = 68455, - [SMALL_STATE(2165)] = 68478, - [SMALL_STATE(2166)] = 68501, - [SMALL_STATE(2167)] = 68524, - [SMALL_STATE(2168)] = 68565, - [SMALL_STATE(2169)] = 68588, - [SMALL_STATE(2170)] = 68611, - [SMALL_STATE(2171)] = 68634, - [SMALL_STATE(2172)] = 68675, - [SMALL_STATE(2173)] = 68713, - [SMALL_STATE(2174)] = 68747, - [SMALL_STATE(2175)] = 68775, - [SMALL_STATE(2176)] = 68813, - [SMALL_STATE(2177)] = 68837, - [SMALL_STATE(2178)] = 68861, - [SMALL_STATE(2179)] = 68899, - [SMALL_STATE(2180)] = 68925, - [SMALL_STATE(2181)] = 68961, - [SMALL_STATE(2182)] = 68993, - [SMALL_STATE(2183)] = 69031, - [SMALL_STATE(2184)] = 69069, - [SMALL_STATE(2185)] = 69107, - [SMALL_STATE(2186)] = 69135, - [SMALL_STATE(2187)] = 69173, - [SMALL_STATE(2188)] = 69199, - [SMALL_STATE(2189)] = 69227, - [SMALL_STATE(2190)] = 69265, - [SMALL_STATE(2191)] = 69289, - [SMALL_STATE(2192)] = 69321, - [SMALL_STATE(2193)] = 69345, - [SMALL_STATE(2194)] = 69377, - [SMALL_STATE(2195)] = 69405, - [SMALL_STATE(2196)] = 69437, - [SMALL_STATE(2197)] = 69463, - [SMALL_STATE(2198)] = 69501, - [SMALL_STATE(2199)] = 69539, - [SMALL_STATE(2200)] = 69567, - [SMALL_STATE(2201)] = 69593, - [SMALL_STATE(2202)] = 69631, - [SMALL_STATE(2203)] = 69669, - [SMALL_STATE(2204)] = 69693, - [SMALL_STATE(2205)] = 69721, - [SMALL_STATE(2206)] = 69753, - [SMALL_STATE(2207)] = 69785, - [SMALL_STATE(2208)] = 69813, - [SMALL_STATE(2209)] = 69845, - [SMALL_STATE(2210)] = 69877, - [SMALL_STATE(2211)] = 69909, - [SMALL_STATE(2212)] = 69941, - [SMALL_STATE(2213)] = 69973, - [SMALL_STATE(2214)] = 70007, - [SMALL_STATE(2215)] = 70039, - [SMALL_STATE(2216)] = 70077, - [SMALL_STATE(2217)] = 70109, - [SMALL_STATE(2218)] = 70147, - [SMALL_STATE(2219)] = 70185, - [SMALL_STATE(2220)] = 70223, - [SMALL_STATE(2221)] = 70258, - [SMALL_STATE(2222)] = 70291, - [SMALL_STATE(2223)] = 70326, - [SMALL_STATE(2224)] = 70361, - [SMALL_STATE(2225)] = 70396, - [SMALL_STATE(2226)] = 70431, - [SMALL_STATE(2227)] = 70466, - [SMALL_STATE(2228)] = 70499, - [SMALL_STATE(2229)] = 70534, - [SMALL_STATE(2230)] = 70569, - [SMALL_STATE(2231)] = 70604, - [SMALL_STATE(2232)] = 70639, - [SMALL_STATE(2233)] = 70674, - [SMALL_STATE(2234)] = 70709, - [SMALL_STATE(2235)] = 70744, - [SMALL_STATE(2236)] = 70779, - [SMALL_STATE(2237)] = 70800, - [SMALL_STATE(2238)] = 70835, - [SMALL_STATE(2239)] = 70870, - [SMALL_STATE(2240)] = 70905, - [SMALL_STATE(2241)] = 70940, - [SMALL_STATE(2242)] = 70975, - [SMALL_STATE(2243)] = 71010, - [SMALL_STATE(2244)] = 71045, - [SMALL_STATE(2245)] = 71066, - [SMALL_STATE(2246)] = 71101, - [SMALL_STATE(2247)] = 71136, - [SMALL_STATE(2248)] = 71171, - [SMALL_STATE(2249)] = 71192, - [SMALL_STATE(2250)] = 71227, - [SMALL_STATE(2251)] = 71262, - [SMALL_STATE(2252)] = 71297, - [SMALL_STATE(2253)] = 71332, - [SMALL_STATE(2254)] = 71367, - [SMALL_STATE(2255)] = 71394, - [SMALL_STATE(2256)] = 71427, - [SMALL_STATE(2257)] = 71462, - [SMALL_STATE(2258)] = 71497, - [SMALL_STATE(2259)] = 71526, - [SMALL_STATE(2260)] = 71551, - [SMALL_STATE(2261)] = 71586, - [SMALL_STATE(2262)] = 71607, - [SMALL_STATE(2263)] = 71642, - [SMALL_STATE(2264)] = 71667, - [SMALL_STATE(2265)] = 71700, - [SMALL_STATE(2266)] = 71735, - [SMALL_STATE(2267)] = 71770, - [SMALL_STATE(2268)] = 71805, - [SMALL_STATE(2269)] = 71840, - [SMALL_STATE(2270)] = 71861, - [SMALL_STATE(2271)] = 71886, - [SMALL_STATE(2272)] = 71921, - [SMALL_STATE(2273)] = 71954, - [SMALL_STATE(2274)] = 71989, - [SMALL_STATE(2275)] = 72010, - [SMALL_STATE(2276)] = 72045, - [SMALL_STATE(2277)] = 72067, - [SMALL_STATE(2278)] = 72097, - [SMALL_STATE(2279)] = 72129, - [SMALL_STATE(2280)] = 72161, - [SMALL_STATE(2281)] = 72193, - [SMALL_STATE(2282)] = 72225, - [SMALL_STATE(2283)] = 72257, - [SMALL_STATE(2284)] = 72289, - [SMALL_STATE(2285)] = 72311, - [SMALL_STATE(2286)] = 72341, - [SMALL_STATE(2287)] = 72371, - [SMALL_STATE(2288)] = 72399, - [SMALL_STATE(2289)] = 72431, - [SMALL_STATE(2290)] = 72463, - [SMALL_STATE(2291)] = 72489, - [SMALL_STATE(2292)] = 72517, - [SMALL_STATE(2293)] = 72549, - [SMALL_STATE(2294)] = 72581, - [SMALL_STATE(2295)] = 72613, - [SMALL_STATE(2296)] = 72645, - [SMALL_STATE(2297)] = 72677, - [SMALL_STATE(2298)] = 72709, - [SMALL_STATE(2299)] = 72741, - [SMALL_STATE(2300)] = 72773, - [SMALL_STATE(2301)] = 72801, - [SMALL_STATE(2302)] = 72827, - [SMALL_STATE(2303)] = 72859, - [SMALL_STATE(2304)] = 72891, - [SMALL_STATE(2305)] = 72923, - [SMALL_STATE(2306)] = 72955, - [SMALL_STATE(2307)] = 72987, - [SMALL_STATE(2308)] = 73019, - [SMALL_STATE(2309)] = 73051, - [SMALL_STATE(2310)] = 73081, - [SMALL_STATE(2311)] = 73111, - [SMALL_STATE(2312)] = 73141, - [SMALL_STATE(2313)] = 73171, - [SMALL_STATE(2314)] = 73193, - [SMALL_STATE(2315)] = 73223, - [SMALL_STATE(2316)] = 73253, - [SMALL_STATE(2317)] = 73281, - [SMALL_STATE(2318)] = 73303, - [SMALL_STATE(2319)] = 73335, - [SMALL_STATE(2320)] = 73367, - [SMALL_STATE(2321)] = 73399, - [SMALL_STATE(2322)] = 73431, - [SMALL_STATE(2323)] = 73463, - [SMALL_STATE(2324)] = 73495, - [SMALL_STATE(2325)] = 73527, - [SMALL_STATE(2326)] = 73559, - [SMALL_STATE(2327)] = 73587, - [SMALL_STATE(2328)] = 73613, - [SMALL_STATE(2329)] = 73645, - [SMALL_STATE(2330)] = 73671, - [SMALL_STATE(2331)] = 73693, - [SMALL_STATE(2332)] = 73723, - [SMALL_STATE(2333)] = 73745, - [SMALL_STATE(2334)] = 73777, - [SMALL_STATE(2335)] = 73800, - [SMALL_STATE(2336)] = 73829, - [SMALL_STATE(2337)] = 73858, - [SMALL_STATE(2338)] = 73887, - [SMALL_STATE(2339)] = 73916, - [SMALL_STATE(2340)] = 73939, - [SMALL_STATE(2341)] = 73968, - [SMALL_STATE(2342)] = 73989, - [SMALL_STATE(2343)] = 74018, - [SMALL_STATE(2344)] = 74047, - [SMALL_STATE(2345)] = 74076, - [SMALL_STATE(2346)] = 74099, - [SMALL_STATE(2347)] = 74128, - [SMALL_STATE(2348)] = 74151, - [SMALL_STATE(2349)] = 74178, - [SMALL_STATE(2350)] = 74207, - [SMALL_STATE(2351)] = 74236, - [SMALL_STATE(2352)] = 74265, - [SMALL_STATE(2353)] = 74294, - [SMALL_STATE(2354)] = 74323, - [SMALL_STATE(2355)] = 74352, - [SMALL_STATE(2356)] = 74377, - [SMALL_STATE(2357)] = 74406, - [SMALL_STATE(2358)] = 74435, - [SMALL_STATE(2359)] = 74460, - [SMALL_STATE(2360)] = 74489, - [SMALL_STATE(2361)] = 74518, - [SMALL_STATE(2362)] = 74547, - [SMALL_STATE(2363)] = 74576, - [SMALL_STATE(2364)] = 74595, - [SMALL_STATE(2365)] = 74624, - [SMALL_STATE(2366)] = 74645, - [SMALL_STATE(2367)] = 74674, - [SMALL_STATE(2368)] = 74703, - [SMALL_STATE(2369)] = 74732, - [SMALL_STATE(2370)] = 74761, - [SMALL_STATE(2371)] = 74790, - [SMALL_STATE(2372)] = 74819, - [SMALL_STATE(2373)] = 74848, - [SMALL_STATE(2374)] = 74877, - [SMALL_STATE(2375)] = 74906, - [SMALL_STATE(2376)] = 74935, - [SMALL_STATE(2377)] = 74956, - [SMALL_STATE(2378)] = 74985, - [SMALL_STATE(2379)] = 75014, - [SMALL_STATE(2380)] = 75043, - [SMALL_STATE(2381)] = 75072, - [SMALL_STATE(2382)] = 75099, - [SMALL_STATE(2383)] = 75128, - [SMALL_STATE(2384)] = 75155, - [SMALL_STATE(2385)] = 75182, - [SMALL_STATE(2386)] = 75211, - [SMALL_STATE(2387)] = 75240, - [SMALL_STATE(2388)] = 75267, - [SMALL_STATE(2389)] = 75296, - [SMALL_STATE(2390)] = 75325, - [SMALL_STATE(2391)] = 75348, - [SMALL_STATE(2392)] = 75371, - [SMALL_STATE(2393)] = 75400, - [SMALL_STATE(2394)] = 75419, - [SMALL_STATE(2395)] = 75448, - [SMALL_STATE(2396)] = 75477, - [SMALL_STATE(2397)] = 75506, - [SMALL_STATE(2398)] = 75535, - [SMALL_STATE(2399)] = 75564, - [SMALL_STATE(2400)] = 75593, - [SMALL_STATE(2401)] = 75614, - [SMALL_STATE(2402)] = 75635, - [SMALL_STATE(2403)] = 75656, - [SMALL_STATE(2404)] = 75677, - [SMALL_STATE(2405)] = 75706, - [SMALL_STATE(2406)] = 75735, - [SMALL_STATE(2407)] = 75764, - [SMALL_STATE(2408)] = 75793, - [SMALL_STATE(2409)] = 75816, - [SMALL_STATE(2410)] = 75839, - [SMALL_STATE(2411)] = 75864, - [SMALL_STATE(2412)] = 75893, - [SMALL_STATE(2413)] = 75918, - [SMALL_STATE(2414)] = 75945, - [SMALL_STATE(2415)] = 75966, - [SMALL_STATE(2416)] = 75995, - [SMALL_STATE(2417)] = 76024, - [SMALL_STATE(2418)] = 76047, - [SMALL_STATE(2419)] = 76070, - [SMALL_STATE(2420)] = 76099, - [SMALL_STATE(2421)] = 76122, - [SMALL_STATE(2422)] = 76151, - [SMALL_STATE(2423)] = 76180, - [SMALL_STATE(2424)] = 76209, - [SMALL_STATE(2425)] = 76232, - [SMALL_STATE(2426)] = 76255, - [SMALL_STATE(2427)] = 76278, - [SMALL_STATE(2428)] = 76307, - [SMALL_STATE(2429)] = 76336, - [SMALL_STATE(2430)] = 76354, - [SMALL_STATE(2431)] = 76378, - [SMALL_STATE(2432)] = 76400, - [SMALL_STATE(2433)] = 76426, - [SMALL_STATE(2434)] = 76452, - [SMALL_STATE(2435)] = 76470, - [SMALL_STATE(2436)] = 76490, - [SMALL_STATE(2437)] = 76516, - [SMALL_STATE(2438)] = 76536, - [SMALL_STATE(2439)] = 76560, - [SMALL_STATE(2440)] = 76580, - [SMALL_STATE(2441)] = 76606, - [SMALL_STATE(2442)] = 76624, - [SMALL_STATE(2443)] = 76650, - [SMALL_STATE(2444)] = 76672, - [SMALL_STATE(2445)] = 76698, - [SMALL_STATE(2446)] = 76716, - [SMALL_STATE(2447)] = 76742, - [SMALL_STATE(2448)] = 76766, - [SMALL_STATE(2449)] = 76788, - [SMALL_STATE(2450)] = 76812, - [SMALL_STATE(2451)] = 76836, - [SMALL_STATE(2452)] = 76862, - [SMALL_STATE(2453)] = 76882, - [SMALL_STATE(2454)] = 76908, - [SMALL_STATE(2455)] = 76932, - [SMALL_STATE(2456)] = 76958, - [SMALL_STATE(2457)] = 76984, - [SMALL_STATE(2458)] = 77010, - [SMALL_STATE(2459)] = 77034, - [SMALL_STATE(2460)] = 77060, - [SMALL_STATE(2461)] = 77086, - [SMALL_STATE(2462)] = 77104, - [SMALL_STATE(2463)] = 77128, - [SMALL_STATE(2464)] = 77146, - [SMALL_STATE(2465)] = 77170, - [SMALL_STATE(2466)] = 77194, - [SMALL_STATE(2467)] = 77220, - [SMALL_STATE(2468)] = 77246, - [SMALL_STATE(2469)] = 77268, - [SMALL_STATE(2470)] = 77294, - [SMALL_STATE(2471)] = 77320, - [SMALL_STATE(2472)] = 77346, - [SMALL_STATE(2473)] = 77372, - [SMALL_STATE(2474)] = 77398, - [SMALL_STATE(2475)] = 77416, - [SMALL_STATE(2476)] = 77434, - [SMALL_STATE(2477)] = 77458, - [SMALL_STATE(2478)] = 77482, - [SMALL_STATE(2479)] = 77508, - [SMALL_STATE(2480)] = 77534, - [SMALL_STATE(2481)] = 77560, - [SMALL_STATE(2482)] = 77582, - [SMALL_STATE(2483)] = 77608, - [SMALL_STATE(2484)] = 77634, - [SMALL_STATE(2485)] = 77660, - [SMALL_STATE(2486)] = 77682, - [SMALL_STATE(2487)] = 77708, - [SMALL_STATE(2488)] = 77734, - [SMALL_STATE(2489)] = 77760, - [SMALL_STATE(2490)] = 77780, - [SMALL_STATE(2491)] = 77804, - [SMALL_STATE(2492)] = 77830, - [SMALL_STATE(2493)] = 77856, - [SMALL_STATE(2494)] = 77874, - [SMALL_STATE(2495)] = 77896, - [SMALL_STATE(2496)] = 77922, - [SMALL_STATE(2497)] = 77948, - [SMALL_STATE(2498)] = 77966, - [SMALL_STATE(2499)] = 77992, - [SMALL_STATE(2500)] = 78016, - [SMALL_STATE(2501)] = 78034, - [SMALL_STATE(2502)] = 78060, - [SMALL_STATE(2503)] = 78084, - [SMALL_STATE(2504)] = 78110, - [SMALL_STATE(2505)] = 78136, - [SMALL_STATE(2506)] = 78160, - [SMALL_STATE(2507)] = 78186, - [SMALL_STATE(2508)] = 78204, - [SMALL_STATE(2509)] = 78230, - [SMALL_STATE(2510)] = 78248, - [SMALL_STATE(2511)] = 78266, - [SMALL_STATE(2512)] = 78284, - [SMALL_STATE(2513)] = 78302, - [SMALL_STATE(2514)] = 78328, - [SMALL_STATE(2515)] = 78346, - [SMALL_STATE(2516)] = 78364, - [SMALL_STATE(2517)] = 78390, - [SMALL_STATE(2518)] = 78416, - [SMALL_STATE(2519)] = 78434, - [SMALL_STATE(2520)] = 78452, - [SMALL_STATE(2521)] = 78470, - [SMALL_STATE(2522)] = 78488, - [SMALL_STATE(2523)] = 78514, - [SMALL_STATE(2524)] = 78540, - [SMALL_STATE(2525)] = 78566, - [SMALL_STATE(2526)] = 78592, - [SMALL_STATE(2527)] = 78610, - [SMALL_STATE(2528)] = 78636, - [SMALL_STATE(2529)] = 78662, - [SMALL_STATE(2530)] = 78684, - [SMALL_STATE(2531)] = 78706, - [SMALL_STATE(2532)] = 78728, - [SMALL_STATE(2533)] = 78754, - [SMALL_STATE(2534)] = 78780, - [SMALL_STATE(2535)] = 78806, - [SMALL_STATE(2536)] = 78829, - [SMALL_STATE(2537)] = 78850, - [SMALL_STATE(2538)] = 78873, - [SMALL_STATE(2539)] = 78892, - [SMALL_STATE(2540)] = 78909, - [SMALL_STATE(2541)] = 78932, - [SMALL_STATE(2542)] = 78955, - [SMALL_STATE(2543)] = 78974, - [SMALL_STATE(2544)] = 78997, - [SMALL_STATE(2545)] = 79020, - [SMALL_STATE(2546)] = 79037, - [SMALL_STATE(2547)] = 79056, - [SMALL_STATE(2548)] = 79079, - [SMALL_STATE(2549)] = 79096, - [SMALL_STATE(2550)] = 79119, - [SMALL_STATE(2551)] = 79138, - [SMALL_STATE(2552)] = 79161, - [SMALL_STATE(2553)] = 79184, - [SMALL_STATE(2554)] = 79205, - [SMALL_STATE(2555)] = 79224, - [SMALL_STATE(2556)] = 79247, - [SMALL_STATE(2557)] = 79270, - [SMALL_STATE(2558)] = 79293, - [SMALL_STATE(2559)] = 79314, - [SMALL_STATE(2560)] = 79337, - [SMALL_STATE(2561)] = 79360, - [SMALL_STATE(2562)] = 79383, - [SMALL_STATE(2563)] = 79406, - [SMALL_STATE(2564)] = 79429, - [SMALL_STATE(2565)] = 79448, - [SMALL_STATE(2566)] = 79467, - [SMALL_STATE(2567)] = 79490, - [SMALL_STATE(2568)] = 79513, - [SMALL_STATE(2569)] = 79536, - [SMALL_STATE(2570)] = 79559, - [SMALL_STATE(2571)] = 79582, - [SMALL_STATE(2572)] = 79601, - [SMALL_STATE(2573)] = 79624, - [SMALL_STATE(2574)] = 79647, - [SMALL_STATE(2575)] = 79670, - [SMALL_STATE(2576)] = 79693, - [SMALL_STATE(2577)] = 79714, - [SMALL_STATE(2578)] = 79737, - [SMALL_STATE(2579)] = 79760, - [SMALL_STATE(2580)] = 79783, - [SMALL_STATE(2581)] = 79806, - [SMALL_STATE(2582)] = 79829, - [SMALL_STATE(2583)] = 79848, - [SMALL_STATE(2584)] = 79871, - [SMALL_STATE(2585)] = 79894, - [SMALL_STATE(2586)] = 79917, - [SMALL_STATE(2587)] = 79940, - [SMALL_STATE(2588)] = 79963, - [SMALL_STATE(2589)] = 79982, - [SMALL_STATE(2590)] = 80005, - [SMALL_STATE(2591)] = 80028, - [SMALL_STATE(2592)] = 80051, - [SMALL_STATE(2593)] = 80068, - [SMALL_STATE(2594)] = 80091, - [SMALL_STATE(2595)] = 80114, - [SMALL_STATE(2596)] = 80135, - [SMALL_STATE(2597)] = 80158, - [SMALL_STATE(2598)] = 80181, - [SMALL_STATE(2599)] = 80204, - [SMALL_STATE(2600)] = 80223, - [SMALL_STATE(2601)] = 80246, - [SMALL_STATE(2602)] = 80269, - [SMALL_STATE(2603)] = 80292, - [SMALL_STATE(2604)] = 80313, - [SMALL_STATE(2605)] = 80336, - [SMALL_STATE(2606)] = 80359, - [SMALL_STATE(2607)] = 80382, - [SMALL_STATE(2608)] = 80405, - [SMALL_STATE(2609)] = 80428, - [SMALL_STATE(2610)] = 80451, - [SMALL_STATE(2611)] = 80474, - [SMALL_STATE(2612)] = 80495, - [SMALL_STATE(2613)] = 80518, - [SMALL_STATE(2614)] = 80541, - [SMALL_STATE(2615)] = 80564, - [SMALL_STATE(2616)] = 80583, - [SMALL_STATE(2617)] = 80606, - [SMALL_STATE(2618)] = 80629, - [SMALL_STATE(2619)] = 80652, - [SMALL_STATE(2620)] = 80673, - [SMALL_STATE(2621)] = 80696, - [SMALL_STATE(2622)] = 80715, - [SMALL_STATE(2623)] = 80738, - [SMALL_STATE(2624)] = 80761, - [SMALL_STATE(2625)] = 80784, - [SMALL_STATE(2626)] = 80805, - [SMALL_STATE(2627)] = 80828, - [SMALL_STATE(2628)] = 80851, - [SMALL_STATE(2629)] = 80874, - [SMALL_STATE(2630)] = 80893, - [SMALL_STATE(2631)] = 80910, - [SMALL_STATE(2632)] = 80933, - [SMALL_STATE(2633)] = 80956, - [SMALL_STATE(2634)] = 80979, - [SMALL_STATE(2635)] = 81002, - [SMALL_STATE(2636)] = 81025, - [SMALL_STATE(2637)] = 81046, - [SMALL_STATE(2638)] = 81069, - [SMALL_STATE(2639)] = 81092, - [SMALL_STATE(2640)] = 81113, - [SMALL_STATE(2641)] = 81136, - [SMALL_STATE(2642)] = 81159, - [SMALL_STATE(2643)] = 81176, - [SMALL_STATE(2644)] = 81199, - [SMALL_STATE(2645)] = 81218, - [SMALL_STATE(2646)] = 81241, - [SMALL_STATE(2647)] = 81264, - [SMALL_STATE(2648)] = 81287, - [SMALL_STATE(2649)] = 81310, - [SMALL_STATE(2650)] = 81333, - [SMALL_STATE(2651)] = 81356, - [SMALL_STATE(2652)] = 81379, - [SMALL_STATE(2653)] = 81400, - [SMALL_STATE(2654)] = 81423, - [SMALL_STATE(2655)] = 81446, - [SMALL_STATE(2656)] = 81469, - [SMALL_STATE(2657)] = 81492, - [SMALL_STATE(2658)] = 81515, - [SMALL_STATE(2659)] = 81538, - [SMALL_STATE(2660)] = 81561, - [SMALL_STATE(2661)] = 81582, - [SMALL_STATE(2662)] = 81605, - [SMALL_STATE(2663)] = 81628, - [SMALL_STATE(2664)] = 81651, - [SMALL_STATE(2665)] = 81674, - [SMALL_STATE(2666)] = 81697, - [SMALL_STATE(2667)] = 81720, - [SMALL_STATE(2668)] = 81743, - [SMALL_STATE(2669)] = 81764, - [SMALL_STATE(2670)] = 81787, - [SMALL_STATE(2671)] = 81810, - [SMALL_STATE(2672)] = 81833, - [SMALL_STATE(2673)] = 81852, - [SMALL_STATE(2674)] = 81875, - [SMALL_STATE(2675)] = 81898, - [SMALL_STATE(2676)] = 81917, - [SMALL_STATE(2677)] = 81940, - [SMALL_STATE(2678)] = 81961, - [SMALL_STATE(2679)] = 81984, - [SMALL_STATE(2680)] = 82007, - [SMALL_STATE(2681)] = 82030, - [SMALL_STATE(2682)] = 82051, - [SMALL_STATE(2683)] = 82074, - [SMALL_STATE(2684)] = 82097, - [SMALL_STATE(2685)] = 82120, - [SMALL_STATE(2686)] = 82143, - [SMALL_STATE(2687)] = 82166, - [SMALL_STATE(2688)] = 82189, - [SMALL_STATE(2689)] = 82212, - [SMALL_STATE(2690)] = 82233, - [SMALL_STATE(2691)] = 82256, - [SMALL_STATE(2692)] = 82277, - [SMALL_STATE(2693)] = 82300, - [SMALL_STATE(2694)] = 82323, - [SMALL_STATE(2695)] = 82346, - [SMALL_STATE(2696)] = 82365, - [SMALL_STATE(2697)] = 82388, - [SMALL_STATE(2698)] = 82411, - [SMALL_STATE(2699)] = 82434, - [SMALL_STATE(2700)] = 82457, - [SMALL_STATE(2701)] = 82476, - [SMALL_STATE(2702)] = 82499, - [SMALL_STATE(2703)] = 82522, - [SMALL_STATE(2704)] = 82545, - [SMALL_STATE(2705)] = 82564, - [SMALL_STATE(2706)] = 82587, - [SMALL_STATE(2707)] = 82606, - [SMALL_STATE(2708)] = 82629, - [SMALL_STATE(2709)] = 82650, - [SMALL_STATE(2710)] = 82669, - [SMALL_STATE(2711)] = 82692, - [SMALL_STATE(2712)] = 82711, - [SMALL_STATE(2713)] = 82734, - [SMALL_STATE(2714)] = 82757, - [SMALL_STATE(2715)] = 82776, - [SMALL_STATE(2716)] = 82799, - [SMALL_STATE(2717)] = 82820, - [SMALL_STATE(2718)] = 82843, - [SMALL_STATE(2719)] = 82866, - [SMALL_STATE(2720)] = 82889, - [SMALL_STATE(2721)] = 82912, - [SMALL_STATE(2722)] = 82935, - [SMALL_STATE(2723)] = 82958, - [SMALL_STATE(2724)] = 82981, - [SMALL_STATE(2725)] = 83004, - [SMALL_STATE(2726)] = 83025, - [SMALL_STATE(2727)] = 83046, - [SMALL_STATE(2728)] = 83067, - [SMALL_STATE(2729)] = 83084, - [SMALL_STATE(2730)] = 83107, - [SMALL_STATE(2731)] = 83130, - [SMALL_STATE(2732)] = 83153, - [SMALL_STATE(2733)] = 83176, - [SMALL_STATE(2734)] = 83199, - [SMALL_STATE(2735)] = 83222, - [SMALL_STATE(2736)] = 83241, - [SMALL_STATE(2737)] = 83264, - [SMALL_STATE(2738)] = 83281, - [SMALL_STATE(2739)] = 83304, - [SMALL_STATE(2740)] = 83327, - [SMALL_STATE(2741)] = 83346, - [SMALL_STATE(2742)] = 83369, - [SMALL_STATE(2743)] = 83392, - [SMALL_STATE(2744)] = 83415, - [SMALL_STATE(2745)] = 83438, - [SMALL_STATE(2746)] = 83457, - [SMALL_STATE(2747)] = 83480, - [SMALL_STATE(2748)] = 83503, - [SMALL_STATE(2749)] = 83526, - [SMALL_STATE(2750)] = 83549, - [SMALL_STATE(2751)] = 83572, - [SMALL_STATE(2752)] = 83595, - [SMALL_STATE(2753)] = 83618, - [SMALL_STATE(2754)] = 83641, - [SMALL_STATE(2755)] = 83660, - [SMALL_STATE(2756)] = 83683, - [SMALL_STATE(2757)] = 83706, - [SMALL_STATE(2758)] = 83729, - [SMALL_STATE(2759)] = 83752, - [SMALL_STATE(2760)] = 83773, - [SMALL_STATE(2761)] = 83796, - [SMALL_STATE(2762)] = 83819, - [SMALL_STATE(2763)] = 83842, - [SMALL_STATE(2764)] = 83863, - [SMALL_STATE(2765)] = 83882, - [SMALL_STATE(2766)] = 83905, - [SMALL_STATE(2767)] = 83928, - [SMALL_STATE(2768)] = 83951, - [SMALL_STATE(2769)] = 83974, - [SMALL_STATE(2770)] = 83993, - [SMALL_STATE(2771)] = 84014, - [SMALL_STATE(2772)] = 84037, - [SMALL_STATE(2773)] = 84056, - [SMALL_STATE(2774)] = 84079, - [SMALL_STATE(2775)] = 84098, - [SMALL_STATE(2776)] = 84121, - [SMALL_STATE(2777)] = 84144, - [SMALL_STATE(2778)] = 84167, - [SMALL_STATE(2779)] = 84190, - [SMALL_STATE(2780)] = 84213, - [SMALL_STATE(2781)] = 84236, - [SMALL_STATE(2782)] = 84259, - [SMALL_STATE(2783)] = 84282, - [SMALL_STATE(2784)] = 84305, - [SMALL_STATE(2785)] = 84326, - [SMALL_STATE(2786)] = 84349, - [SMALL_STATE(2787)] = 84372, - [SMALL_STATE(2788)] = 84395, - [SMALL_STATE(2789)] = 84418, - [SMALL_STATE(2790)] = 84438, - [SMALL_STATE(2791)] = 84458, - [SMALL_STATE(2792)] = 84478, - [SMALL_STATE(2793)] = 84498, - [SMALL_STATE(2794)] = 84514, - [SMALL_STATE(2795)] = 84534, - [SMALL_STATE(2796)] = 84554, - [SMALL_STATE(2797)] = 84574, - [SMALL_STATE(2798)] = 84594, - [SMALL_STATE(2799)] = 84614, - [SMALL_STATE(2800)] = 84634, - [SMALL_STATE(2801)] = 84654, - [SMALL_STATE(2802)] = 84674, - [SMALL_STATE(2803)] = 84694, - [SMALL_STATE(2804)] = 84714, - [SMALL_STATE(2805)] = 84734, - [SMALL_STATE(2806)] = 84754, - [SMALL_STATE(2807)] = 84774, - [SMALL_STATE(2808)] = 84792, - [SMALL_STATE(2809)] = 84812, - [SMALL_STATE(2810)] = 84832, - [SMALL_STATE(2811)] = 84852, - [SMALL_STATE(2812)] = 84872, - [SMALL_STATE(2813)] = 84892, - [SMALL_STATE(2814)] = 84912, - [SMALL_STATE(2815)] = 84932, - [SMALL_STATE(2816)] = 84950, - [SMALL_STATE(2817)] = 84970, - [SMALL_STATE(2818)] = 84990, - [SMALL_STATE(2819)] = 85010, - [SMALL_STATE(2820)] = 85030, - [SMALL_STATE(2821)] = 85050, - [SMALL_STATE(2822)] = 85070, - [SMALL_STATE(2823)] = 85088, - [SMALL_STATE(2824)] = 85106, - [SMALL_STATE(2825)] = 85126, - [SMALL_STATE(2826)] = 85146, - [SMALL_STATE(2827)] = 85166, - [SMALL_STATE(2828)] = 85186, - [SMALL_STATE(2829)] = 85206, - [SMALL_STATE(2830)] = 85224, - [SMALL_STATE(2831)] = 85244, - [SMALL_STATE(2832)] = 85264, - [SMALL_STATE(2833)] = 85284, - [SMALL_STATE(2834)] = 85304, - [SMALL_STATE(2835)] = 85324, - [SMALL_STATE(2836)] = 85344, - [SMALL_STATE(2837)] = 85362, - [SMALL_STATE(2838)] = 85382, - [SMALL_STATE(2839)] = 85402, - [SMALL_STATE(2840)] = 85420, - [SMALL_STATE(2841)] = 85440, - [SMALL_STATE(2842)] = 85458, - [SMALL_STATE(2843)] = 85476, - [SMALL_STATE(2844)] = 85496, - [SMALL_STATE(2845)] = 85514, - [SMALL_STATE(2846)] = 85534, - [SMALL_STATE(2847)] = 85554, - [SMALL_STATE(2848)] = 85574, - [SMALL_STATE(2849)] = 85594, - [SMALL_STATE(2850)] = 85614, - [SMALL_STATE(2851)] = 85634, - [SMALL_STATE(2852)] = 85654, - [SMALL_STATE(2853)] = 85674, - [SMALL_STATE(2854)] = 85694, - [SMALL_STATE(2855)] = 85714, - [SMALL_STATE(2856)] = 85734, - [SMALL_STATE(2857)] = 85754, - [SMALL_STATE(2858)] = 85774, - [SMALL_STATE(2859)] = 85794, - [SMALL_STATE(2860)] = 85814, - [SMALL_STATE(2861)] = 85832, - [SMALL_STATE(2862)] = 85852, - [SMALL_STATE(2863)] = 85872, - [SMALL_STATE(2864)] = 85892, - [SMALL_STATE(2865)] = 85912, - [SMALL_STATE(2866)] = 85932, - [SMALL_STATE(2867)] = 85952, - [SMALL_STATE(2868)] = 85972, - [SMALL_STATE(2869)] = 85990, - [SMALL_STATE(2870)] = 86010, - [SMALL_STATE(2871)] = 86030, - [SMALL_STATE(2872)] = 86050, - [SMALL_STATE(2873)] = 86066, - [SMALL_STATE(2874)] = 86082, - [SMALL_STATE(2875)] = 86102, - [SMALL_STATE(2876)] = 86122, - [SMALL_STATE(2877)] = 86142, - [SMALL_STATE(2878)] = 86160, - [SMALL_STATE(2879)] = 86180, - [SMALL_STATE(2880)] = 86198, - [SMALL_STATE(2881)] = 86218, - [SMALL_STATE(2882)] = 86238, - [SMALL_STATE(2883)] = 86258, - [SMALL_STATE(2884)] = 86278, - [SMALL_STATE(2885)] = 86294, - [SMALL_STATE(2886)] = 86310, - [SMALL_STATE(2887)] = 86330, - [SMALL_STATE(2888)] = 86350, - [SMALL_STATE(2889)] = 86370, - [SMALL_STATE(2890)] = 86390, - [SMALL_STATE(2891)] = 86408, - [SMALL_STATE(2892)] = 86428, - [SMALL_STATE(2893)] = 86448, - [SMALL_STATE(2894)] = 86468, - [SMALL_STATE(2895)] = 86488, - [SMALL_STATE(2896)] = 86504, - [SMALL_STATE(2897)] = 86524, - [SMALL_STATE(2898)] = 86544, - [SMALL_STATE(2899)] = 86564, - [SMALL_STATE(2900)] = 86580, - [SMALL_STATE(2901)] = 86600, - [SMALL_STATE(2902)] = 86616, - [SMALL_STATE(2903)] = 86636, - [SMALL_STATE(2904)] = 86652, - [SMALL_STATE(2905)] = 86672, - [SMALL_STATE(2906)] = 86688, - [SMALL_STATE(2907)] = 86708, - [SMALL_STATE(2908)] = 86724, - [SMALL_STATE(2909)] = 86740, - [SMALL_STATE(2910)] = 86760, - [SMALL_STATE(2911)] = 86780, - [SMALL_STATE(2912)] = 86796, - [SMALL_STATE(2913)] = 86816, - [SMALL_STATE(2914)] = 86834, - [SMALL_STATE(2915)] = 86854, - [SMALL_STATE(2916)] = 86874, - [SMALL_STATE(2917)] = 86894, - [SMALL_STATE(2918)] = 86914, - [SMALL_STATE(2919)] = 86934, - [SMALL_STATE(2920)] = 86954, - [SMALL_STATE(2921)] = 86974, - [SMALL_STATE(2922)] = 86994, - [SMALL_STATE(2923)] = 87014, - [SMALL_STATE(2924)] = 87034, - [SMALL_STATE(2925)] = 87054, - [SMALL_STATE(2926)] = 87074, - [SMALL_STATE(2927)] = 87094, - [SMALL_STATE(2928)] = 87112, - [SMALL_STATE(2929)] = 87130, - [SMALL_STATE(2930)] = 87150, - [SMALL_STATE(2931)] = 87170, - [SMALL_STATE(2932)] = 87190, - [SMALL_STATE(2933)] = 87208, - [SMALL_STATE(2934)] = 87228, - [SMALL_STATE(2935)] = 87248, - [SMALL_STATE(2936)] = 87264, - [SMALL_STATE(2937)] = 87280, - [SMALL_STATE(2938)] = 87296, - [SMALL_STATE(2939)] = 87316, - [SMALL_STATE(2940)] = 87332, - [SMALL_STATE(2941)] = 87352, - [SMALL_STATE(2942)] = 87372, - [SMALL_STATE(2943)] = 87392, - [SMALL_STATE(2944)] = 87412, - [SMALL_STATE(2945)] = 87432, - [SMALL_STATE(2946)] = 87452, - [SMALL_STATE(2947)] = 87470, - [SMALL_STATE(2948)] = 87490, - [SMALL_STATE(2949)] = 87510, - [SMALL_STATE(2950)] = 87528, - [SMALL_STATE(2951)] = 87548, - [SMALL_STATE(2952)] = 87564, - [SMALL_STATE(2953)] = 87584, - [SMALL_STATE(2954)] = 87604, - [SMALL_STATE(2955)] = 87622, - [SMALL_STATE(2956)] = 87642, - [SMALL_STATE(2957)] = 87660, - [SMALL_STATE(2958)] = 87678, - [SMALL_STATE(2959)] = 87698, - [SMALL_STATE(2960)] = 87718, - [SMALL_STATE(2961)] = 87738, - [SMALL_STATE(2962)] = 87758, - [SMALL_STATE(2963)] = 87778, - [SMALL_STATE(2964)] = 87796, - [SMALL_STATE(2965)] = 87816, - [SMALL_STATE(2966)] = 87832, - [SMALL_STATE(2967)] = 87852, - [SMALL_STATE(2968)] = 87870, - [SMALL_STATE(2969)] = 87890, - [SMALL_STATE(2970)] = 87910, - [SMALL_STATE(2971)] = 87930, - [SMALL_STATE(2972)] = 87950, - [SMALL_STATE(2973)] = 87970, - [SMALL_STATE(2974)] = 87990, - [SMALL_STATE(2975)] = 88010, - [SMALL_STATE(2976)] = 88030, - [SMALL_STATE(2977)] = 88050, - [SMALL_STATE(2978)] = 88070, - [SMALL_STATE(2979)] = 88088, - [SMALL_STATE(2980)] = 88108, - [SMALL_STATE(2981)] = 88128, - [SMALL_STATE(2982)] = 88148, - [SMALL_STATE(2983)] = 88168, - [SMALL_STATE(2984)] = 88186, - [SMALL_STATE(2985)] = 88206, - [SMALL_STATE(2986)] = 88226, - [SMALL_STATE(2987)] = 88246, - [SMALL_STATE(2988)] = 88266, - [SMALL_STATE(2989)] = 88286, - [SMALL_STATE(2990)] = 88306, - [SMALL_STATE(2991)] = 88326, - [SMALL_STATE(2992)] = 88344, - [SMALL_STATE(2993)] = 88364, - [SMALL_STATE(2994)] = 88384, - [SMALL_STATE(2995)] = 88402, - [SMALL_STATE(2996)] = 88422, - [SMALL_STATE(2997)] = 88440, - [SMALL_STATE(2998)] = 88460, - [SMALL_STATE(2999)] = 88476, - [SMALL_STATE(3000)] = 88492, - [SMALL_STATE(3001)] = 88512, - [SMALL_STATE(3002)] = 88528, - [SMALL_STATE(3003)] = 88544, - [SMALL_STATE(3004)] = 88560, - [SMALL_STATE(3005)] = 88576, - [SMALL_STATE(3006)] = 88594, - [SMALL_STATE(3007)] = 88614, - [SMALL_STATE(3008)] = 88634, - [SMALL_STATE(3009)] = 88650, - [SMALL_STATE(3010)] = 88666, - [SMALL_STATE(3011)] = 88686, - [SMALL_STATE(3012)] = 88706, - [SMALL_STATE(3013)] = 88724, - [SMALL_STATE(3014)] = 88740, - [SMALL_STATE(3015)] = 88756, - [SMALL_STATE(3016)] = 88776, - [SMALL_STATE(3017)] = 88792, - [SMALL_STATE(3018)] = 88808, - [SMALL_STATE(3019)] = 88828, - [SMALL_STATE(3020)] = 88844, - [SMALL_STATE(3021)] = 88864, - [SMALL_STATE(3022)] = 88884, - [SMALL_STATE(3023)] = 88904, - [SMALL_STATE(3024)] = 88924, - [SMALL_STATE(3025)] = 88944, - [SMALL_STATE(3026)] = 88964, - [SMALL_STATE(3027)] = 88984, - [SMALL_STATE(3028)] = 89000, - [SMALL_STATE(3029)] = 89020, - [SMALL_STATE(3030)] = 89036, - [SMALL_STATE(3031)] = 89056, - [SMALL_STATE(3032)] = 89072, - [SMALL_STATE(3033)] = 89092, - [SMALL_STATE(3034)] = 89112, - [SMALL_STATE(3035)] = 89132, - [SMALL_STATE(3036)] = 89152, - [SMALL_STATE(3037)] = 89172, - [SMALL_STATE(3038)] = 89188, - [SMALL_STATE(3039)] = 89208, - [SMALL_STATE(3040)] = 89226, - [SMALL_STATE(3041)] = 89246, - [SMALL_STATE(3042)] = 89266, - [SMALL_STATE(3043)] = 89282, - [SMALL_STATE(3044)] = 89298, - [SMALL_STATE(3045)] = 89314, - [SMALL_STATE(3046)] = 89330, - [SMALL_STATE(3047)] = 89346, - [SMALL_STATE(3048)] = 89366, - [SMALL_STATE(3049)] = 89386, - [SMALL_STATE(3050)] = 89406, - [SMALL_STATE(3051)] = 89422, - [SMALL_STATE(3052)] = 89438, - [SMALL_STATE(3053)] = 89456, - [SMALL_STATE(3054)] = 89474, - [SMALL_STATE(3055)] = 89492, - [SMALL_STATE(3056)] = 89512, - [SMALL_STATE(3057)] = 89532, - [SMALL_STATE(3058)] = 89550, - [SMALL_STATE(3059)] = 89566, - [SMALL_STATE(3060)] = 89584, - [SMALL_STATE(3061)] = 89604, - [SMALL_STATE(3062)] = 89624, - [SMALL_STATE(3063)] = 89644, - [SMALL_STATE(3064)] = 89664, - [SMALL_STATE(3065)] = 89684, - [SMALL_STATE(3066)] = 89704, - [SMALL_STATE(3067)] = 89724, - [SMALL_STATE(3068)] = 89740, - [SMALL_STATE(3069)] = 89760, - [SMALL_STATE(3070)] = 89778, - [SMALL_STATE(3071)] = 89798, - [SMALL_STATE(3072)] = 89818, - [SMALL_STATE(3073)] = 89834, - [SMALL_STATE(3074)] = 89850, - [SMALL_STATE(3075)] = 89866, - [SMALL_STATE(3076)] = 89886, - [SMALL_STATE(3077)] = 89902, - [SMALL_STATE(3078)] = 89918, - [SMALL_STATE(3079)] = 89934, - [SMALL_STATE(3080)] = 89950, - [SMALL_STATE(3081)] = 89966, - [SMALL_STATE(3082)] = 89982, - [SMALL_STATE(3083)] = 90002, - [SMALL_STATE(3084)] = 90022, - [SMALL_STATE(3085)] = 90042, - [SMALL_STATE(3086)] = 90062, - [SMALL_STATE(3087)] = 90082, - [SMALL_STATE(3088)] = 90102, - [SMALL_STATE(3089)] = 90122, - [SMALL_STATE(3090)] = 90142, - [SMALL_STATE(3091)] = 90162, - [SMALL_STATE(3092)] = 90178, - [SMALL_STATE(3093)] = 90198, - [SMALL_STATE(3094)] = 90218, - [SMALL_STATE(3095)] = 90238, - [SMALL_STATE(3096)] = 90256, - [SMALL_STATE(3097)] = 90276, - [SMALL_STATE(3098)] = 90296, - [SMALL_STATE(3099)] = 90313, - [SMALL_STATE(3100)] = 90330, - [SMALL_STATE(3101)] = 90347, - [SMALL_STATE(3102)] = 90364, - [SMALL_STATE(3103)] = 90381, - [SMALL_STATE(3104)] = 90398, - [SMALL_STATE(3105)] = 90415, - [SMALL_STATE(3106)] = 90432, - [SMALL_STATE(3107)] = 90447, - [SMALL_STATE(3108)] = 90464, - [SMALL_STATE(3109)] = 90479, - [SMALL_STATE(3110)] = 90496, - [SMALL_STATE(3111)] = 90513, - [SMALL_STATE(3112)] = 90528, - [SMALL_STATE(3113)] = 90545, - [SMALL_STATE(3114)] = 90562, - [SMALL_STATE(3115)] = 90577, - [SMALL_STATE(3116)] = 90594, - [SMALL_STATE(3117)] = 90611, - [SMALL_STATE(3118)] = 90628, - [SMALL_STATE(3119)] = 90645, - [SMALL_STATE(3120)] = 90662, - [SMALL_STATE(3121)] = 90679, - [SMALL_STATE(3122)] = 90696, - [SMALL_STATE(3123)] = 90713, - [SMALL_STATE(3124)] = 90730, - [SMALL_STATE(3125)] = 90745, - [SMALL_STATE(3126)] = 90762, - [SMALL_STATE(3127)] = 90779, - [SMALL_STATE(3128)] = 90796, - [SMALL_STATE(3129)] = 90811, - [SMALL_STATE(3130)] = 90828, - [SMALL_STATE(3131)] = 90845, - [SMALL_STATE(3132)] = 90862, - [SMALL_STATE(3133)] = 90879, - [SMALL_STATE(3134)] = 90896, - [SMALL_STATE(3135)] = 90911, - [SMALL_STATE(3136)] = 90928, - [SMALL_STATE(3137)] = 90945, - [SMALL_STATE(3138)] = 90960, - [SMALL_STATE(3139)] = 90975, - [SMALL_STATE(3140)] = 90992, - [SMALL_STATE(3141)] = 91009, - [SMALL_STATE(3142)] = 91024, - [SMALL_STATE(3143)] = 91041, - [SMALL_STATE(3144)] = 91058, - [SMALL_STATE(3145)] = 91073, - [SMALL_STATE(3146)] = 91088, - [SMALL_STATE(3147)] = 91105, - [SMALL_STATE(3148)] = 91122, - [SMALL_STATE(3149)] = 91139, - [SMALL_STATE(3150)] = 91156, - [SMALL_STATE(3151)] = 91173, - [SMALL_STATE(3152)] = 91190, - [SMALL_STATE(3153)] = 91207, - [SMALL_STATE(3154)] = 91222, - [SMALL_STATE(3155)] = 91237, - [SMALL_STATE(3156)] = 91252, - [SMALL_STATE(3157)] = 91269, - [SMALL_STATE(3158)] = 91286, - [SMALL_STATE(3159)] = 91303, - [SMALL_STATE(3160)] = 91320, - [SMALL_STATE(3161)] = 91337, - [SMALL_STATE(3162)] = 91354, - [SMALL_STATE(3163)] = 91371, - [SMALL_STATE(3164)] = 91388, - [SMALL_STATE(3165)] = 91405, - [SMALL_STATE(3166)] = 91422, - [SMALL_STATE(3167)] = 91439, - [SMALL_STATE(3168)] = 91456, - [SMALL_STATE(3169)] = 91473, - [SMALL_STATE(3170)] = 91488, - [SMALL_STATE(3171)] = 91505, - [SMALL_STATE(3172)] = 91522, - [SMALL_STATE(3173)] = 91539, - [SMALL_STATE(3174)] = 91554, - [SMALL_STATE(3175)] = 91571, - [SMALL_STATE(3176)] = 91588, - [SMALL_STATE(3177)] = 91603, - [SMALL_STATE(3178)] = 91620, - [SMALL_STATE(3179)] = 91637, - [SMALL_STATE(3180)] = 91654, - [SMALL_STATE(3181)] = 91669, - [SMALL_STATE(3182)] = 91686, - [SMALL_STATE(3183)] = 91703, - [SMALL_STATE(3184)] = 91718, - [SMALL_STATE(3185)] = 91735, - [SMALL_STATE(3186)] = 91750, - [SMALL_STATE(3187)] = 91767, - [SMALL_STATE(3188)] = 91782, - [SMALL_STATE(3189)] = 91797, - [SMALL_STATE(3190)] = 91814, - [SMALL_STATE(3191)] = 91829, - [SMALL_STATE(3192)] = 91846, - [SMALL_STATE(3193)] = 91861, - [SMALL_STATE(3194)] = 91878, - [SMALL_STATE(3195)] = 91895, - [SMALL_STATE(3196)] = 91910, - [SMALL_STATE(3197)] = 91927, - [SMALL_STATE(3198)] = 91944, - [SMALL_STATE(3199)] = 91961, - [SMALL_STATE(3200)] = 91978, - [SMALL_STATE(3201)] = 91993, - [SMALL_STATE(3202)] = 92010, - [SMALL_STATE(3203)] = 92027, - [SMALL_STATE(3204)] = 92044, - [SMALL_STATE(3205)] = 92061, - [SMALL_STATE(3206)] = 92078, - [SMALL_STATE(3207)] = 92095, - [SMALL_STATE(3208)] = 92112, - [SMALL_STATE(3209)] = 92129, - [SMALL_STATE(3210)] = 92146, - [SMALL_STATE(3211)] = 92163, - [SMALL_STATE(3212)] = 92180, - [SMALL_STATE(3213)] = 92195, - [SMALL_STATE(3214)] = 92212, - [SMALL_STATE(3215)] = 92229, - [SMALL_STATE(3216)] = 92246, - [SMALL_STATE(3217)] = 92263, - [SMALL_STATE(3218)] = 92280, - [SMALL_STATE(3219)] = 92297, - [SMALL_STATE(3220)] = 92314, - [SMALL_STATE(3221)] = 92329, - [SMALL_STATE(3222)] = 92346, - [SMALL_STATE(3223)] = 92363, - [SMALL_STATE(3224)] = 92380, - [SMALL_STATE(3225)] = 92397, - [SMALL_STATE(3226)] = 92414, - [SMALL_STATE(3227)] = 92429, - [SMALL_STATE(3228)] = 92446, - [SMALL_STATE(3229)] = 92463, - [SMALL_STATE(3230)] = 92480, - [SMALL_STATE(3231)] = 92495, - [SMALL_STATE(3232)] = 92512, - [SMALL_STATE(3233)] = 92529, - [SMALL_STATE(3234)] = 92546, - [SMALL_STATE(3235)] = 92563, - [SMALL_STATE(3236)] = 92580, - [SMALL_STATE(3237)] = 92597, - [SMALL_STATE(3238)] = 92614, - [SMALL_STATE(3239)] = 92631, - [SMALL_STATE(3240)] = 92648, - [SMALL_STATE(3241)] = 92665, - [SMALL_STATE(3242)] = 92682, - [SMALL_STATE(3243)] = 92699, - [SMALL_STATE(3244)] = 92716, - [SMALL_STATE(3245)] = 92733, - [SMALL_STATE(3246)] = 92750, - [SMALL_STATE(3247)] = 92767, - [SMALL_STATE(3248)] = 92784, - [SMALL_STATE(3249)] = 92801, - [SMALL_STATE(3250)] = 92818, - [SMALL_STATE(3251)] = 92835, - [SMALL_STATE(3252)] = 92852, - [SMALL_STATE(3253)] = 92869, - [SMALL_STATE(3254)] = 92886, - [SMALL_STATE(3255)] = 92903, - [SMALL_STATE(3256)] = 92920, - [SMALL_STATE(3257)] = 92937, - [SMALL_STATE(3258)] = 92954, - [SMALL_STATE(3259)] = 92971, - [SMALL_STATE(3260)] = 92988, - [SMALL_STATE(3261)] = 93005, - [SMALL_STATE(3262)] = 93022, - [SMALL_STATE(3263)] = 93039, - [SMALL_STATE(3264)] = 93056, - [SMALL_STATE(3265)] = 93071, - [SMALL_STATE(3266)] = 93088, - [SMALL_STATE(3267)] = 93105, - [SMALL_STATE(3268)] = 93122, - [SMALL_STATE(3269)] = 93139, - [SMALL_STATE(3270)] = 93154, - [SMALL_STATE(3271)] = 93171, - [SMALL_STATE(3272)] = 93188, - [SMALL_STATE(3273)] = 93203, - [SMALL_STATE(3274)] = 93220, - [SMALL_STATE(3275)] = 93235, - [SMALL_STATE(3276)] = 93252, - [SMALL_STATE(3277)] = 93269, - [SMALL_STATE(3278)] = 93286, - [SMALL_STATE(3279)] = 93301, - [SMALL_STATE(3280)] = 93318, - [SMALL_STATE(3281)] = 93335, - [SMALL_STATE(3282)] = 93352, - [SMALL_STATE(3283)] = 93369, - [SMALL_STATE(3284)] = 93386, - [SMALL_STATE(3285)] = 93403, - [SMALL_STATE(3286)] = 93420, - [SMALL_STATE(3287)] = 93437, - [SMALL_STATE(3288)] = 93454, - [SMALL_STATE(3289)] = 93469, - [SMALL_STATE(3290)] = 93486, - [SMALL_STATE(3291)] = 93503, - [SMALL_STATE(3292)] = 93520, - [SMALL_STATE(3293)] = 93537, - [SMALL_STATE(3294)] = 93552, - [SMALL_STATE(3295)] = 93567, - [SMALL_STATE(3296)] = 93584, - [SMALL_STATE(3297)] = 93599, - [SMALL_STATE(3298)] = 93616, - [SMALL_STATE(3299)] = 93633, - [SMALL_STATE(3300)] = 93650, - [SMALL_STATE(3301)] = 93667, - [SMALL_STATE(3302)] = 93684, - [SMALL_STATE(3303)] = 93701, - [SMALL_STATE(3304)] = 93718, - [SMALL_STATE(3305)] = 93735, - [SMALL_STATE(3306)] = 93752, - [SMALL_STATE(3307)] = 93769, - [SMALL_STATE(3308)] = 93786, - [SMALL_STATE(3309)] = 93801, - [SMALL_STATE(3310)] = 93818, - [SMALL_STATE(3311)] = 93835, - [SMALL_STATE(3312)] = 93852, - [SMALL_STATE(3313)] = 93867, - [SMALL_STATE(3314)] = 93884, - [SMALL_STATE(3315)] = 93901, - [SMALL_STATE(3316)] = 93918, - [SMALL_STATE(3317)] = 93933, - [SMALL_STATE(3318)] = 93950, - [SMALL_STATE(3319)] = 93967, - [SMALL_STATE(3320)] = 93984, - [SMALL_STATE(3321)] = 94001, - [SMALL_STATE(3322)] = 94016, - [SMALL_STATE(3323)] = 94033, - [SMALL_STATE(3324)] = 94050, - [SMALL_STATE(3325)] = 94065, - [SMALL_STATE(3326)] = 94080, - [SMALL_STATE(3327)] = 94097, - [SMALL_STATE(3328)] = 94112, - [SMALL_STATE(3329)] = 94127, - [SMALL_STATE(3330)] = 94144, - [SMALL_STATE(3331)] = 94159, - [SMALL_STATE(3332)] = 94174, - [SMALL_STATE(3333)] = 94191, - [SMALL_STATE(3334)] = 94208, - [SMALL_STATE(3335)] = 94225, - [SMALL_STATE(3336)] = 94242, - [SMALL_STATE(3337)] = 94259, - [SMALL_STATE(3338)] = 94276, - [SMALL_STATE(3339)] = 94293, - [SMALL_STATE(3340)] = 94310, - [SMALL_STATE(3341)] = 94327, - [SMALL_STATE(3342)] = 94344, - [SMALL_STATE(3343)] = 94361, - [SMALL_STATE(3344)] = 94378, - [SMALL_STATE(3345)] = 94395, - [SMALL_STATE(3346)] = 94410, - [SMALL_STATE(3347)] = 94427, - [SMALL_STATE(3348)] = 94444, - [SMALL_STATE(3349)] = 94461, - [SMALL_STATE(3350)] = 94478, - [SMALL_STATE(3351)] = 94495, - [SMALL_STATE(3352)] = 94512, - [SMALL_STATE(3353)] = 94529, - [SMALL_STATE(3354)] = 94546, - [SMALL_STATE(3355)] = 94563, - [SMALL_STATE(3356)] = 94580, - [SMALL_STATE(3357)] = 94595, - [SMALL_STATE(3358)] = 94612, - [SMALL_STATE(3359)] = 94629, - [SMALL_STATE(3360)] = 94646, - [SMALL_STATE(3361)] = 94661, - [SMALL_STATE(3362)] = 94678, - [SMALL_STATE(3363)] = 94695, - [SMALL_STATE(3364)] = 94712, - [SMALL_STATE(3365)] = 94727, - [SMALL_STATE(3366)] = 94742, - [SMALL_STATE(3367)] = 94757, - [SMALL_STATE(3368)] = 94774, - [SMALL_STATE(3369)] = 94791, - [SMALL_STATE(3370)] = 94808, - [SMALL_STATE(3371)] = 94825, - [SMALL_STATE(3372)] = 94842, - [SMALL_STATE(3373)] = 94859, - [SMALL_STATE(3374)] = 94876, - [SMALL_STATE(3375)] = 94893, - [SMALL_STATE(3376)] = 94910, - [SMALL_STATE(3377)] = 94927, - [SMALL_STATE(3378)] = 94944, - [SMALL_STATE(3379)] = 94961, - [SMALL_STATE(3380)] = 94978, - [SMALL_STATE(3381)] = 94995, - [SMALL_STATE(3382)] = 95012, - [SMALL_STATE(3383)] = 95029, - [SMALL_STATE(3384)] = 95046, - [SMALL_STATE(3385)] = 95061, - [SMALL_STATE(3386)] = 95075, - [SMALL_STATE(3387)] = 95089, - [SMALL_STATE(3388)] = 95103, - [SMALL_STATE(3389)] = 95117, - [SMALL_STATE(3390)] = 95131, - [SMALL_STATE(3391)] = 95145, - [SMALL_STATE(3392)] = 95159, - [SMALL_STATE(3393)] = 95173, - [SMALL_STATE(3394)] = 95187, - [SMALL_STATE(3395)] = 95201, - [SMALL_STATE(3396)] = 95215, - [SMALL_STATE(3397)] = 95229, - [SMALL_STATE(3398)] = 95243, - [SMALL_STATE(3399)] = 95257, - [SMALL_STATE(3400)] = 95271, - [SMALL_STATE(3401)] = 95285, - [SMALL_STATE(3402)] = 95299, - [SMALL_STATE(3403)] = 95313, - [SMALL_STATE(3404)] = 95327, - [SMALL_STATE(3405)] = 95341, - [SMALL_STATE(3406)] = 95355, - [SMALL_STATE(3407)] = 95369, - [SMALL_STATE(3408)] = 95383, - [SMALL_STATE(3409)] = 95397, - [SMALL_STATE(3410)] = 95411, - [SMALL_STATE(3411)] = 95425, - [SMALL_STATE(3412)] = 95439, - [SMALL_STATE(3413)] = 95453, - [SMALL_STATE(3414)] = 95467, - [SMALL_STATE(3415)] = 95481, - [SMALL_STATE(3416)] = 95495, - [SMALL_STATE(3417)] = 95509, - [SMALL_STATE(3418)] = 95523, - [SMALL_STATE(3419)] = 95537, - [SMALL_STATE(3420)] = 95551, - [SMALL_STATE(3421)] = 95565, - [SMALL_STATE(3422)] = 95579, - [SMALL_STATE(3423)] = 95593, - [SMALL_STATE(3424)] = 95607, - [SMALL_STATE(3425)] = 95621, - [SMALL_STATE(3426)] = 95635, - [SMALL_STATE(3427)] = 95649, - [SMALL_STATE(3428)] = 95663, - [SMALL_STATE(3429)] = 95677, - [SMALL_STATE(3430)] = 95691, - [SMALL_STATE(3431)] = 95705, - [SMALL_STATE(3432)] = 95719, - [SMALL_STATE(3433)] = 95733, - [SMALL_STATE(3434)] = 95747, - [SMALL_STATE(3435)] = 95761, - [SMALL_STATE(3436)] = 95775, - [SMALL_STATE(3437)] = 95789, - [SMALL_STATE(3438)] = 95803, - [SMALL_STATE(3439)] = 95817, - [SMALL_STATE(3440)] = 95831, - [SMALL_STATE(3441)] = 95845, - [SMALL_STATE(3442)] = 95859, - [SMALL_STATE(3443)] = 95873, - [SMALL_STATE(3444)] = 95887, - [SMALL_STATE(3445)] = 95901, - [SMALL_STATE(3446)] = 95915, - [SMALL_STATE(3447)] = 95929, - [SMALL_STATE(3448)] = 95943, - [SMALL_STATE(3449)] = 95957, - [SMALL_STATE(3450)] = 95971, - [SMALL_STATE(3451)] = 95985, - [SMALL_STATE(3452)] = 95999, - [SMALL_STATE(3453)] = 96013, - [SMALL_STATE(3454)] = 96027, - [SMALL_STATE(3455)] = 96041, - [SMALL_STATE(3456)] = 96055, - [SMALL_STATE(3457)] = 96069, - [SMALL_STATE(3458)] = 96083, - [SMALL_STATE(3459)] = 96097, - [SMALL_STATE(3460)] = 96111, - [SMALL_STATE(3461)] = 96125, - [SMALL_STATE(3462)] = 96139, - [SMALL_STATE(3463)] = 96153, - [SMALL_STATE(3464)] = 96167, - [SMALL_STATE(3465)] = 96181, - [SMALL_STATE(3466)] = 96195, - [SMALL_STATE(3467)] = 96209, - [SMALL_STATE(3468)] = 96223, - [SMALL_STATE(3469)] = 96237, - [SMALL_STATE(3470)] = 96251, - [SMALL_STATE(3471)] = 96265, - [SMALL_STATE(3472)] = 96279, - [SMALL_STATE(3473)] = 96293, - [SMALL_STATE(3474)] = 96307, - [SMALL_STATE(3475)] = 96321, - [SMALL_STATE(3476)] = 96335, - [SMALL_STATE(3477)] = 96349, - [SMALL_STATE(3478)] = 96363, - [SMALL_STATE(3479)] = 96377, - [SMALL_STATE(3480)] = 96391, - [SMALL_STATE(3481)] = 96405, - [SMALL_STATE(3482)] = 96419, - [SMALL_STATE(3483)] = 96433, - [SMALL_STATE(3484)] = 96447, - [SMALL_STATE(3485)] = 96461, - [SMALL_STATE(3486)] = 96475, - [SMALL_STATE(3487)] = 96489, - [SMALL_STATE(3488)] = 96503, - [SMALL_STATE(3489)] = 96517, - [SMALL_STATE(3490)] = 96531, - [SMALL_STATE(3491)] = 96545, - [SMALL_STATE(3492)] = 96559, - [SMALL_STATE(3493)] = 96573, - [SMALL_STATE(3494)] = 96587, - [SMALL_STATE(3495)] = 96601, - [SMALL_STATE(3496)] = 96615, - [SMALL_STATE(3497)] = 96629, - [SMALL_STATE(3498)] = 96643, - [SMALL_STATE(3499)] = 96657, - [SMALL_STATE(3500)] = 96671, - [SMALL_STATE(3501)] = 96685, - [SMALL_STATE(3502)] = 96699, - [SMALL_STATE(3503)] = 96713, - [SMALL_STATE(3504)] = 96727, - [SMALL_STATE(3505)] = 96741, - [SMALL_STATE(3506)] = 96755, - [SMALL_STATE(3507)] = 96769, - [SMALL_STATE(3508)] = 96783, - [SMALL_STATE(3509)] = 96797, - [SMALL_STATE(3510)] = 96811, - [SMALL_STATE(3511)] = 96825, - [SMALL_STATE(3512)] = 96839, - [SMALL_STATE(3513)] = 96853, - [SMALL_STATE(3514)] = 96867, - [SMALL_STATE(3515)] = 96881, - [SMALL_STATE(3516)] = 96895, - [SMALL_STATE(3517)] = 96909, - [SMALL_STATE(3518)] = 96923, - [SMALL_STATE(3519)] = 96937, - [SMALL_STATE(3520)] = 96951, - [SMALL_STATE(3521)] = 96965, - [SMALL_STATE(3522)] = 96979, - [SMALL_STATE(3523)] = 96993, - [SMALL_STATE(3524)] = 97007, - [SMALL_STATE(3525)] = 97021, - [SMALL_STATE(3526)] = 97035, - [SMALL_STATE(3527)] = 97049, - [SMALL_STATE(3528)] = 97063, - [SMALL_STATE(3529)] = 97077, - [SMALL_STATE(3530)] = 97091, - [SMALL_STATE(3531)] = 97105, - [SMALL_STATE(3532)] = 97119, - [SMALL_STATE(3533)] = 97133, - [SMALL_STATE(3534)] = 97147, - [SMALL_STATE(3535)] = 97161, - [SMALL_STATE(3536)] = 97175, - [SMALL_STATE(3537)] = 97189, - [SMALL_STATE(3538)] = 97203, - [SMALL_STATE(3539)] = 97217, - [SMALL_STATE(3540)] = 97231, - [SMALL_STATE(3541)] = 97245, - [SMALL_STATE(3542)] = 97259, - [SMALL_STATE(3543)] = 97273, - [SMALL_STATE(3544)] = 97287, - [SMALL_STATE(3545)] = 97301, - [SMALL_STATE(3546)] = 97315, - [SMALL_STATE(3547)] = 97329, - [SMALL_STATE(3548)] = 97343, - [SMALL_STATE(3549)] = 97357, - [SMALL_STATE(3550)] = 97371, - [SMALL_STATE(3551)] = 97385, - [SMALL_STATE(3552)] = 97399, - [SMALL_STATE(3553)] = 97413, - [SMALL_STATE(3554)] = 97427, - [SMALL_STATE(3555)] = 97441, - [SMALL_STATE(3556)] = 97455, - [SMALL_STATE(3557)] = 97469, - [SMALL_STATE(3558)] = 97483, - [SMALL_STATE(3559)] = 97497, - [SMALL_STATE(3560)] = 97511, - [SMALL_STATE(3561)] = 97525, - [SMALL_STATE(3562)] = 97539, - [SMALL_STATE(3563)] = 97553, - [SMALL_STATE(3564)] = 97567, - [SMALL_STATE(3565)] = 97581, - [SMALL_STATE(3566)] = 97595, - [SMALL_STATE(3567)] = 97609, - [SMALL_STATE(3568)] = 97623, - [SMALL_STATE(3569)] = 97637, - [SMALL_STATE(3570)] = 97651, - [SMALL_STATE(3571)] = 97665, - [SMALL_STATE(3572)] = 97679, - [SMALL_STATE(3573)] = 97693, - [SMALL_STATE(3574)] = 97707, - [SMALL_STATE(3575)] = 97721, - [SMALL_STATE(3576)] = 97735, - [SMALL_STATE(3577)] = 97749, - [SMALL_STATE(3578)] = 97763, - [SMALL_STATE(3579)] = 97777, - [SMALL_STATE(3580)] = 97791, - [SMALL_STATE(3581)] = 97805, - [SMALL_STATE(3582)] = 97819, - [SMALL_STATE(3583)] = 97833, - [SMALL_STATE(3584)] = 97847, - [SMALL_STATE(3585)] = 97861, - [SMALL_STATE(3586)] = 97875, - [SMALL_STATE(3587)] = 97889, - [SMALL_STATE(3588)] = 97903, - [SMALL_STATE(3589)] = 97917, - [SMALL_STATE(3590)] = 97931, - [SMALL_STATE(3591)] = 97945, - [SMALL_STATE(3592)] = 97959, - [SMALL_STATE(3593)] = 97973, - [SMALL_STATE(3594)] = 97987, - [SMALL_STATE(3595)] = 98001, - [SMALL_STATE(3596)] = 98015, - [SMALL_STATE(3597)] = 98029, - [SMALL_STATE(3598)] = 98043, - [SMALL_STATE(3599)] = 98057, - [SMALL_STATE(3600)] = 98071, - [SMALL_STATE(3601)] = 98085, - [SMALL_STATE(3602)] = 98099, - [SMALL_STATE(3603)] = 98113, - [SMALL_STATE(3604)] = 98127, - [SMALL_STATE(3605)] = 98141, - [SMALL_STATE(3606)] = 98155, - [SMALL_STATE(3607)] = 98169, - [SMALL_STATE(3608)] = 98183, - [SMALL_STATE(3609)] = 98197, - [SMALL_STATE(3610)] = 98211, - [SMALL_STATE(3611)] = 98225, - [SMALL_STATE(3612)] = 98239, - [SMALL_STATE(3613)] = 98253, - [SMALL_STATE(3614)] = 98267, - [SMALL_STATE(3615)] = 98281, - [SMALL_STATE(3616)] = 98295, - [SMALL_STATE(3617)] = 98309, - [SMALL_STATE(3618)] = 98323, - [SMALL_STATE(3619)] = 98337, - [SMALL_STATE(3620)] = 98351, - [SMALL_STATE(3621)] = 98365, - [SMALL_STATE(3622)] = 98379, - [SMALL_STATE(3623)] = 98393, - [SMALL_STATE(3624)] = 98407, - [SMALL_STATE(3625)] = 98421, - [SMALL_STATE(3626)] = 98435, - [SMALL_STATE(3627)] = 98449, - [SMALL_STATE(3628)] = 98463, - [SMALL_STATE(3629)] = 98477, - [SMALL_STATE(3630)] = 98491, - [SMALL_STATE(3631)] = 98505, - [SMALL_STATE(3632)] = 98519, - [SMALL_STATE(3633)] = 98533, - [SMALL_STATE(3634)] = 98547, - [SMALL_STATE(3635)] = 98561, - [SMALL_STATE(3636)] = 98575, - [SMALL_STATE(3637)] = 98589, - [SMALL_STATE(3638)] = 98603, - [SMALL_STATE(3639)] = 98617, - [SMALL_STATE(3640)] = 98631, - [SMALL_STATE(3641)] = 98645, - [SMALL_STATE(3642)] = 98659, - [SMALL_STATE(3643)] = 98673, - [SMALL_STATE(3644)] = 98687, - [SMALL_STATE(3645)] = 98701, - [SMALL_STATE(3646)] = 98715, - [SMALL_STATE(3647)] = 98729, - [SMALL_STATE(3648)] = 98743, - [SMALL_STATE(3649)] = 98757, - [SMALL_STATE(3650)] = 98771, - [SMALL_STATE(3651)] = 98785, - [SMALL_STATE(3652)] = 98799, - [SMALL_STATE(3653)] = 98813, - [SMALL_STATE(3654)] = 98827, - [SMALL_STATE(3655)] = 98841, - [SMALL_STATE(3656)] = 98855, - [SMALL_STATE(3657)] = 98869, - [SMALL_STATE(3658)] = 98883, - [SMALL_STATE(3659)] = 98897, - [SMALL_STATE(3660)] = 98911, - [SMALL_STATE(3661)] = 98925, - [SMALL_STATE(3662)] = 98939, - [SMALL_STATE(3663)] = 98953, - [SMALL_STATE(3664)] = 98967, - [SMALL_STATE(3665)] = 98981, - [SMALL_STATE(3666)] = 98995, - [SMALL_STATE(3667)] = 99009, - [SMALL_STATE(3668)] = 99023, - [SMALL_STATE(3669)] = 99037, - [SMALL_STATE(3670)] = 99051, - [SMALL_STATE(3671)] = 99065, - [SMALL_STATE(3672)] = 99079, - [SMALL_STATE(3673)] = 99093, - [SMALL_STATE(3674)] = 99107, - [SMALL_STATE(3675)] = 99121, - [SMALL_STATE(3676)] = 99135, - [SMALL_STATE(3677)] = 99149, - [SMALL_STATE(3678)] = 99163, - [SMALL_STATE(3679)] = 99177, - [SMALL_STATE(3680)] = 99191, - [SMALL_STATE(3681)] = 99205, - [SMALL_STATE(3682)] = 99219, - [SMALL_STATE(3683)] = 99233, - [SMALL_STATE(3684)] = 99247, - [SMALL_STATE(3685)] = 99261, - [SMALL_STATE(3686)] = 99275, - [SMALL_STATE(3687)] = 99289, - [SMALL_STATE(3688)] = 99303, - [SMALL_STATE(3689)] = 99317, - [SMALL_STATE(3690)] = 99331, - [SMALL_STATE(3691)] = 99345, - [SMALL_STATE(3692)] = 99359, - [SMALL_STATE(3693)] = 99373, - [SMALL_STATE(3694)] = 99387, - [SMALL_STATE(3695)] = 99401, - [SMALL_STATE(3696)] = 99405, - [SMALL_STATE(3697)] = 99409, - [SMALL_STATE(3698)] = 99413, - [SMALL_STATE(3699)] = 99417, - [SMALL_STATE(3700)] = 99421, - [SMALL_STATE(3701)] = 99425, + [SMALL_STATE(1034)] = 0, + [SMALL_STATE(1035)] = 75, + [SMALL_STATE(1036)] = 147, + [SMALL_STATE(1037)] = 217, + [SMALL_STATE(1038)] = 317, + [SMALL_STATE(1039)] = 417, + [SMALL_STATE(1040)] = 517, + [SMALL_STATE(1041)] = 596, + [SMALL_STATE(1042)] = 673, + [SMALL_STATE(1043)] = 737, + [SMALL_STATE(1044)] = 801, + [SMALL_STATE(1045)] = 865, + [SMALL_STATE(1046)] = 929, + [SMALL_STATE(1047)] = 993, + [SMALL_STATE(1048)] = 1057, + [SMALL_STATE(1049)] = 1121, + [SMALL_STATE(1050)] = 1195, + [SMALL_STATE(1051)] = 1259, + [SMALL_STATE(1052)] = 1333, + [SMALL_STATE(1053)] = 1401, + [SMALL_STATE(1054)] = 1475, + [SMALL_STATE(1055)] = 1539, + [SMALL_STATE(1056)] = 1640, + [SMALL_STATE(1057)] = 1707, + [SMALL_STATE(1058)] = 1774, + [SMALL_STATE(1059)] = 1845, + [SMALL_STATE(1060)] = 1908, + [SMALL_STATE(1061)] = 1979, + [SMALL_STATE(1062)] = 2046, + [SMALL_STATE(1063)] = 2117, + [SMALL_STATE(1064)] = 2218, + [SMALL_STATE(1065)] = 2319, + [SMALL_STATE(1066)] = 2382, + [SMALL_STATE(1067)] = 2445, + [SMALL_STATE(1068)] = 2508, + [SMALL_STATE(1069)] = 2579, + [SMALL_STATE(1070)] = 2646, + [SMALL_STATE(1071)] = 2709, + [SMALL_STATE(1072)] = 2815, + [SMALL_STATE(1073)] = 2921, + [SMALL_STATE(1074)] = 2983, + [SMALL_STATE(1075)] = 3049, + [SMALL_STATE(1076)] = 3111, + [SMALL_STATE(1077)] = 3175, + [SMALL_STATE(1078)] = 3237, + [SMALL_STATE(1079)] = 3307, + [SMALL_STATE(1080)] = 3413, + [SMALL_STATE(1081)] = 3519, + [SMALL_STATE(1082)] = 3625, + [SMALL_STATE(1083)] = 3689, + [SMALL_STATE(1084)] = 3757, + [SMALL_STATE(1085)] = 3819, + [SMALL_STATE(1086)] = 3925, + [SMALL_STATE(1087)] = 4000, + [SMALL_STATE(1088)] = 4061, + [SMALL_STATE(1089)] = 4122, + [SMALL_STATE(1090)] = 4185, + [SMALL_STATE(1091)] = 4246, + [SMALL_STATE(1092)] = 4309, + [SMALL_STATE(1093)] = 4370, + [SMALL_STATE(1094)] = 4431, + [SMALL_STATE(1095)] = 4494, + [SMALL_STATE(1096)] = 4555, + [SMALL_STATE(1097)] = 4616, + [SMALL_STATE(1098)] = 4677, + [SMALL_STATE(1099)] = 4738, + [SMALL_STATE(1100)] = 4831, + [SMALL_STATE(1101)] = 4894, + [SMALL_STATE(1102)] = 4957, + [SMALL_STATE(1103)] = 5020, + [SMALL_STATE(1104)] = 5081, + [SMALL_STATE(1105)] = 5142, + [SMALL_STATE(1106)] = 5235, + [SMALL_STATE(1107)] = 5296, + [SMALL_STATE(1108)] = 5389, + [SMALL_STATE(1109)] = 5450, + [SMALL_STATE(1110)] = 5511, + [SMALL_STATE(1111)] = 5572, + [SMALL_STATE(1112)] = 5635, + [SMALL_STATE(1113)] = 5698, + [SMALL_STATE(1114)] = 5761, + [SMALL_STATE(1115)] = 5824, + [SMALL_STATE(1116)] = 5887, + [SMALL_STATE(1117)] = 5948, + [SMALL_STATE(1118)] = 6013, + [SMALL_STATE(1119)] = 6074, + [SMALL_STATE(1120)] = 6135, + [SMALL_STATE(1121)] = 6196, + [SMALL_STATE(1122)] = 6257, + [SMALL_STATE(1123)] = 6318, + [SMALL_STATE(1124)] = 6379, + [SMALL_STATE(1125)] = 6440, + [SMALL_STATE(1126)] = 6501, + [SMALL_STATE(1127)] = 6562, + [SMALL_STATE(1128)] = 6623, + [SMALL_STATE(1129)] = 6684, + [SMALL_STATE(1130)] = 6745, + [SMALL_STATE(1131)] = 6806, + [SMALL_STATE(1132)] = 6867, + [SMALL_STATE(1133)] = 6928, + [SMALL_STATE(1134)] = 6989, + [SMALL_STATE(1135)] = 7050, + [SMALL_STATE(1136)] = 7111, + [SMALL_STATE(1137)] = 7174, + [SMALL_STATE(1138)] = 7237, + [SMALL_STATE(1139)] = 7300, + [SMALL_STATE(1140)] = 7361, + [SMALL_STATE(1141)] = 7422, + [SMALL_STATE(1142)] = 7483, + [SMALL_STATE(1143)] = 7544, + [SMALL_STATE(1144)] = 7605, + [SMALL_STATE(1145)] = 7666, + [SMALL_STATE(1146)] = 7727, + [SMALL_STATE(1147)] = 7788, + [SMALL_STATE(1148)] = 7849, + [SMALL_STATE(1149)] = 7910, + [SMALL_STATE(1150)] = 7971, + [SMALL_STATE(1151)] = 8032, + [SMALL_STATE(1152)] = 8093, + [SMALL_STATE(1153)] = 8154, + [SMALL_STATE(1154)] = 8215, + [SMALL_STATE(1155)] = 8276, + [SMALL_STATE(1156)] = 8337, + [SMALL_STATE(1157)] = 8398, + [SMALL_STATE(1158)] = 8459, + [SMALL_STATE(1159)] = 8520, + [SMALL_STATE(1160)] = 8581, + [SMALL_STATE(1161)] = 8642, + [SMALL_STATE(1162)] = 8703, + [SMALL_STATE(1163)] = 8764, + [SMALL_STATE(1164)] = 8825, + [SMALL_STATE(1165)] = 8886, + [SMALL_STATE(1166)] = 8947, + [SMALL_STATE(1167)] = 9008, + [SMALL_STATE(1168)] = 9069, + [SMALL_STATE(1169)] = 9130, + [SMALL_STATE(1170)] = 9191, + [SMALL_STATE(1171)] = 9252, + [SMALL_STATE(1172)] = 9313, + [SMALL_STATE(1173)] = 9374, + [SMALL_STATE(1174)] = 9435, + [SMALL_STATE(1175)] = 9496, + [SMALL_STATE(1176)] = 9557, + [SMALL_STATE(1177)] = 9618, + [SMALL_STATE(1178)] = 9681, + [SMALL_STATE(1179)] = 9744, + [SMALL_STATE(1180)] = 9805, + [SMALL_STATE(1181)] = 9866, + [SMALL_STATE(1182)] = 9927, + [SMALL_STATE(1183)] = 9988, + [SMALL_STATE(1184)] = 10049, + [SMALL_STATE(1185)] = 10110, + [SMALL_STATE(1186)] = 10171, + [SMALL_STATE(1187)] = 10232, + [SMALL_STATE(1188)] = 10293, + [SMALL_STATE(1189)] = 10354, + [SMALL_STATE(1190)] = 10415, + [SMALL_STATE(1191)] = 10476, + [SMALL_STATE(1192)] = 10537, + [SMALL_STATE(1193)] = 10598, + [SMALL_STATE(1194)] = 10659, + [SMALL_STATE(1195)] = 10720, + [SMALL_STATE(1196)] = 10781, + [SMALL_STATE(1197)] = 10842, + [SMALL_STATE(1198)] = 10903, + [SMALL_STATE(1199)] = 10964, + [SMALL_STATE(1200)] = 11025, + [SMALL_STATE(1201)] = 11086, + [SMALL_STATE(1202)] = 11147, + [SMALL_STATE(1203)] = 11208, + [SMALL_STATE(1204)] = 11269, + [SMALL_STATE(1205)] = 11330, + [SMALL_STATE(1206)] = 11391, + [SMALL_STATE(1207)] = 11452, + [SMALL_STATE(1208)] = 11513, + [SMALL_STATE(1209)] = 11574, + [SMALL_STATE(1210)] = 11635, + [SMALL_STATE(1211)] = 11696, + [SMALL_STATE(1212)] = 11757, + [SMALL_STATE(1213)] = 11818, + [SMALL_STATE(1214)] = 11879, + [SMALL_STATE(1215)] = 11940, + [SMALL_STATE(1216)] = 12001, + [SMALL_STATE(1217)] = 12062, + [SMALL_STATE(1218)] = 12123, + [SMALL_STATE(1219)] = 12184, + [SMALL_STATE(1220)] = 12245, + [SMALL_STATE(1221)] = 12306, + [SMALL_STATE(1222)] = 12367, + [SMALL_STATE(1223)] = 12428, + [SMALL_STATE(1224)] = 12489, + [SMALL_STATE(1225)] = 12550, + [SMALL_STATE(1226)] = 12611, + [SMALL_STATE(1227)] = 12672, + [SMALL_STATE(1228)] = 12733, + [SMALL_STATE(1229)] = 12794, + [SMALL_STATE(1230)] = 12855, + [SMALL_STATE(1231)] = 12916, + [SMALL_STATE(1232)] = 12977, + [SMALL_STATE(1233)] = 13038, + [SMALL_STATE(1234)] = 13099, + [SMALL_STATE(1235)] = 13160, + [SMALL_STATE(1236)] = 13221, + [SMALL_STATE(1237)] = 13282, + [SMALL_STATE(1238)] = 13343, + [SMALL_STATE(1239)] = 13404, + [SMALL_STATE(1240)] = 13465, + [SMALL_STATE(1241)] = 13526, + [SMALL_STATE(1242)] = 13587, + [SMALL_STATE(1243)] = 13648, + [SMALL_STATE(1244)] = 13709, + [SMALL_STATE(1245)] = 13770, + [SMALL_STATE(1246)] = 13831, + [SMALL_STATE(1247)] = 13892, + [SMALL_STATE(1248)] = 13953, + [SMALL_STATE(1249)] = 14014, + [SMALL_STATE(1250)] = 14075, + [SMALL_STATE(1251)] = 14136, + [SMALL_STATE(1252)] = 14197, + [SMALL_STATE(1253)] = 14258, + [SMALL_STATE(1254)] = 14319, + [SMALL_STATE(1255)] = 14380, + [SMALL_STATE(1256)] = 14441, + [SMALL_STATE(1257)] = 14502, + [SMALL_STATE(1258)] = 14563, + [SMALL_STATE(1259)] = 14626, + [SMALL_STATE(1260)] = 14687, + [SMALL_STATE(1261)] = 14748, + [SMALL_STATE(1262)] = 14809, + [SMALL_STATE(1263)] = 14870, + [SMALL_STATE(1264)] = 14931, + [SMALL_STATE(1265)] = 14992, + [SMALL_STATE(1266)] = 15053, + [SMALL_STATE(1267)] = 15114, + [SMALL_STATE(1268)] = 15175, + [SMALL_STATE(1269)] = 15236, + [SMALL_STATE(1270)] = 15297, + [SMALL_STATE(1271)] = 15358, + [SMALL_STATE(1272)] = 15419, + [SMALL_STATE(1273)] = 15480, + [SMALL_STATE(1274)] = 15541, + [SMALL_STATE(1275)] = 15602, + [SMALL_STATE(1276)] = 15663, + [SMALL_STATE(1277)] = 15724, + [SMALL_STATE(1278)] = 15785, + [SMALL_STATE(1279)] = 15846, + [SMALL_STATE(1280)] = 15907, + [SMALL_STATE(1281)] = 15968, + [SMALL_STATE(1282)] = 16029, + [SMALL_STATE(1283)] = 16090, + [SMALL_STATE(1284)] = 16151, + [SMALL_STATE(1285)] = 16212, + [SMALL_STATE(1286)] = 16273, + [SMALL_STATE(1287)] = 16334, + [SMALL_STATE(1288)] = 16395, + [SMALL_STATE(1289)] = 16456, + [SMALL_STATE(1290)] = 16517, + [SMALL_STATE(1291)] = 16578, + [SMALL_STATE(1292)] = 16639, + [SMALL_STATE(1293)] = 16700, + [SMALL_STATE(1294)] = 16761, + [SMALL_STATE(1295)] = 16822, + [SMALL_STATE(1296)] = 16883, + [SMALL_STATE(1297)] = 16944, + [SMALL_STATE(1298)] = 17005, + [SMALL_STATE(1299)] = 17066, + [SMALL_STATE(1300)] = 17127, + [SMALL_STATE(1301)] = 17188, + [SMALL_STATE(1302)] = 17249, + [SMALL_STATE(1303)] = 17310, + [SMALL_STATE(1304)] = 17371, + [SMALL_STATE(1305)] = 17432, + [SMALL_STATE(1306)] = 17493, + [SMALL_STATE(1307)] = 17554, + [SMALL_STATE(1308)] = 17615, + [SMALL_STATE(1309)] = 17676, + [SMALL_STATE(1310)] = 17737, + [SMALL_STATE(1311)] = 17798, + [SMALL_STATE(1312)] = 17859, + [SMALL_STATE(1313)] = 17920, + [SMALL_STATE(1314)] = 17981, + [SMALL_STATE(1315)] = 18042, + [SMALL_STATE(1316)] = 18103, + [SMALL_STATE(1317)] = 18164, + [SMALL_STATE(1318)] = 18225, + [SMALL_STATE(1319)] = 18286, + [SMALL_STATE(1320)] = 18347, + [SMALL_STATE(1321)] = 18408, + [SMALL_STATE(1322)] = 18469, + [SMALL_STATE(1323)] = 18530, + [SMALL_STATE(1324)] = 18591, + [SMALL_STATE(1325)] = 18652, + [SMALL_STATE(1326)] = 18713, + [SMALL_STATE(1327)] = 18774, + [SMALL_STATE(1328)] = 18835, + [SMALL_STATE(1329)] = 18896, + [SMALL_STATE(1330)] = 18957, + [SMALL_STATE(1331)] = 19018, + [SMALL_STATE(1332)] = 19079, + [SMALL_STATE(1333)] = 19140, + [SMALL_STATE(1334)] = 19201, + [SMALL_STATE(1335)] = 19262, + [SMALL_STATE(1336)] = 19323, + [SMALL_STATE(1337)] = 19384, + [SMALL_STATE(1338)] = 19445, + [SMALL_STATE(1339)] = 19506, + [SMALL_STATE(1340)] = 19567, + [SMALL_STATE(1341)] = 19628, + [SMALL_STATE(1342)] = 19689, + [SMALL_STATE(1343)] = 19750, + [SMALL_STATE(1344)] = 19811, + [SMALL_STATE(1345)] = 19872, + [SMALL_STATE(1346)] = 19933, + [SMALL_STATE(1347)] = 19994, + [SMALL_STATE(1348)] = 20055, + [SMALL_STATE(1349)] = 20116, + [SMALL_STATE(1350)] = 20177, + [SMALL_STATE(1351)] = 20238, + [SMALL_STATE(1352)] = 20299, + [SMALL_STATE(1353)] = 20360, + [SMALL_STATE(1354)] = 20421, + [SMALL_STATE(1355)] = 20482, + [SMALL_STATE(1356)] = 20543, + [SMALL_STATE(1357)] = 20604, + [SMALL_STATE(1358)] = 20665, + [SMALL_STATE(1359)] = 20726, + [SMALL_STATE(1360)] = 20787, + [SMALL_STATE(1361)] = 20848, + [SMALL_STATE(1362)] = 20909, + [SMALL_STATE(1363)] = 20970, + [SMALL_STATE(1364)] = 21031, + [SMALL_STATE(1365)] = 21092, + [SMALL_STATE(1366)] = 21153, + [SMALL_STATE(1367)] = 21214, + [SMALL_STATE(1368)] = 21275, + [SMALL_STATE(1369)] = 21336, + [SMALL_STATE(1370)] = 21397, + [SMALL_STATE(1371)] = 21458, + [SMALL_STATE(1372)] = 21519, + [SMALL_STATE(1373)] = 21580, + [SMALL_STATE(1374)] = 21641, + [SMALL_STATE(1375)] = 21702, + [SMALL_STATE(1376)] = 21763, + [SMALL_STATE(1377)] = 21824, + [SMALL_STATE(1378)] = 21885, + [SMALL_STATE(1379)] = 21946, + [SMALL_STATE(1380)] = 22007, + [SMALL_STATE(1381)] = 22068, + [SMALL_STATE(1382)] = 22129, + [SMALL_STATE(1383)] = 22190, + [SMALL_STATE(1384)] = 22251, + [SMALL_STATE(1385)] = 22312, + [SMALL_STATE(1386)] = 22373, + [SMALL_STATE(1387)] = 22434, + [SMALL_STATE(1388)] = 22495, + [SMALL_STATE(1389)] = 22556, + [SMALL_STATE(1390)] = 22617, + [SMALL_STATE(1391)] = 22678, + [SMALL_STATE(1392)] = 22739, + [SMALL_STATE(1393)] = 22804, + [SMALL_STATE(1394)] = 22865, + [SMALL_STATE(1395)] = 22926, + [SMALL_STATE(1396)] = 22987, + [SMALL_STATE(1397)] = 23048, + [SMALL_STATE(1398)] = 23109, + [SMALL_STATE(1399)] = 23170, + [SMALL_STATE(1400)] = 23235, + [SMALL_STATE(1401)] = 23310, + [SMALL_STATE(1402)] = 23373, + [SMALL_STATE(1403)] = 23434, + [SMALL_STATE(1404)] = 23495, + [SMALL_STATE(1405)] = 23559, + [SMALL_STATE(1406)] = 23619, + [SMALL_STATE(1407)] = 23679, + [SMALL_STATE(1408)] = 23739, + [SMALL_STATE(1409)] = 23799, + [SMALL_STATE(1410)] = 23859, + [SMALL_STATE(1411)] = 23919, + [SMALL_STATE(1412)] = 23979, + [SMALL_STATE(1413)] = 24039, + [SMALL_STATE(1414)] = 24099, + [SMALL_STATE(1415)] = 24159, + [SMALL_STATE(1416)] = 24219, + [SMALL_STATE(1417)] = 24279, + [SMALL_STATE(1418)] = 24341, + [SMALL_STATE(1419)] = 24401, + [SMALL_STATE(1420)] = 24461, + [SMALL_STATE(1421)] = 24521, + [SMALL_STATE(1422)] = 24581, + [SMALL_STATE(1423)] = 24647, + [SMALL_STATE(1424)] = 24707, + [SMALL_STATE(1425)] = 24767, + [SMALL_STATE(1426)] = 24827, + [SMALL_STATE(1427)] = 24887, + [SMALL_STATE(1428)] = 24947, + [SMALL_STATE(1429)] = 25007, + [SMALL_STATE(1430)] = 25067, + [SMALL_STATE(1431)] = 25133, + [SMALL_STATE(1432)] = 25193, + [SMALL_STATE(1433)] = 25253, + [SMALL_STATE(1434)] = 25313, + [SMALL_STATE(1435)] = 25373, + [SMALL_STATE(1436)] = 25433, + [SMALL_STATE(1437)] = 25499, + [SMALL_STATE(1438)] = 25559, + [SMALL_STATE(1439)] = 25619, + [SMALL_STATE(1440)] = 25679, + [SMALL_STATE(1441)] = 25743, + [SMALL_STATE(1442)] = 25803, + [SMALL_STATE(1443)] = 25863, + [SMALL_STATE(1444)] = 25923, + [SMALL_STATE(1445)] = 25983, + [SMALL_STATE(1446)] = 26043, + [SMALL_STATE(1447)] = 26103, + [SMALL_STATE(1448)] = 26163, + [SMALL_STATE(1449)] = 26223, + [SMALL_STATE(1450)] = 26283, + [SMALL_STATE(1451)] = 26343, + [SMALL_STATE(1452)] = 26403, + [SMALL_STATE(1453)] = 26463, + [SMALL_STATE(1454)] = 26523, + [SMALL_STATE(1455)] = 26583, + [SMALL_STATE(1456)] = 26643, + [SMALL_STATE(1457)] = 26703, + [SMALL_STATE(1458)] = 26763, + [SMALL_STATE(1459)] = 26823, + [SMALL_STATE(1460)] = 26883, + [SMALL_STATE(1461)] = 26943, + [SMALL_STATE(1462)] = 27003, + [SMALL_STATE(1463)] = 27063, + [SMALL_STATE(1464)] = 27123, + [SMALL_STATE(1465)] = 27183, + [SMALL_STATE(1466)] = 27243, + [SMALL_STATE(1467)] = 27303, + [SMALL_STATE(1468)] = 27363, + [SMALL_STATE(1469)] = 27423, + [SMALL_STATE(1470)] = 27483, + [SMALL_STATE(1471)] = 27543, + [SMALL_STATE(1472)] = 27603, + [SMALL_STATE(1473)] = 27663, + [SMALL_STATE(1474)] = 27723, + [SMALL_STATE(1475)] = 27819, + [SMALL_STATE(1476)] = 27879, + [SMALL_STATE(1477)] = 27939, + [SMALL_STATE(1478)] = 27999, + [SMALL_STATE(1479)] = 28059, + [SMALL_STATE(1480)] = 28119, + [SMALL_STATE(1481)] = 28179, + [SMALL_STATE(1482)] = 28241, + [SMALL_STATE(1483)] = 28301, + [SMALL_STATE(1484)] = 28361, + [SMALL_STATE(1485)] = 28421, + [SMALL_STATE(1486)] = 28481, + [SMALL_STATE(1487)] = 28541, + [SMALL_STATE(1488)] = 28609, + [SMALL_STATE(1489)] = 28669, + [SMALL_STATE(1490)] = 28729, + [SMALL_STATE(1491)] = 28789, + [SMALL_STATE(1492)] = 28849, + [SMALL_STATE(1493)] = 28909, + [SMALL_STATE(1494)] = 28969, + [SMALL_STATE(1495)] = 29029, + [SMALL_STATE(1496)] = 29089, + [SMALL_STATE(1497)] = 29149, + [SMALL_STATE(1498)] = 29209, + [SMALL_STATE(1499)] = 29269, + [SMALL_STATE(1500)] = 29329, + [SMALL_STATE(1501)] = 29389, + [SMALL_STATE(1502)] = 29449, + [SMALL_STATE(1503)] = 29523, + [SMALL_STATE(1504)] = 29583, + [SMALL_STATE(1505)] = 29643, + [SMALL_STATE(1506)] = 29703, + [SMALL_STATE(1507)] = 29763, + [SMALL_STATE(1508)] = 29823, + [SMALL_STATE(1509)] = 29883, + [SMALL_STATE(1510)] = 29943, + [SMALL_STATE(1511)] = 30003, + [SMALL_STATE(1512)] = 30063, + [SMALL_STATE(1513)] = 30123, + [SMALL_STATE(1514)] = 30183, + [SMALL_STATE(1515)] = 30243, + [SMALL_STATE(1516)] = 30303, + [SMALL_STATE(1517)] = 30369, + [SMALL_STATE(1518)] = 30429, + [SMALL_STATE(1519)] = 30489, + [SMALL_STATE(1520)] = 30549, + [SMALL_STATE(1521)] = 30609, + [SMALL_STATE(1522)] = 30669, + [SMALL_STATE(1523)] = 30729, + [SMALL_STATE(1524)] = 30789, + [SMALL_STATE(1525)] = 30849, + [SMALL_STATE(1526)] = 30909, + [SMALL_STATE(1527)] = 30969, + [SMALL_STATE(1528)] = 31029, + [SMALL_STATE(1529)] = 31128, + [SMALL_STATE(1530)] = 31199, + [SMALL_STATE(1531)] = 31260, + [SMALL_STATE(1532)] = 31359, + [SMALL_STATE(1533)] = 31428, + [SMALL_STATE(1534)] = 31527, + [SMALL_STATE(1535)] = 31588, + [SMALL_STATE(1536)] = 31674, + [SMALL_STATE(1537)] = 31766, + [SMALL_STATE(1538)] = 31856, + [SMALL_STATE(1539)] = 31928, + [SMALL_STATE(1540)] = 31994, + [SMALL_STATE(1541)] = 32070, + [SMALL_STATE(1542)] = 32152, + [SMALL_STATE(1543)] = 32222, + [SMALL_STATE(1544)] = 32312, + [SMALL_STATE(1545)] = 32398, + [SMALL_STATE(1546)] = 32488, + [SMALL_STATE(1547)] = 32574, + [SMALL_STATE(1548)] = 32660, + [SMALL_STATE(1549)] = 32744, + [SMALL_STATE(1550)] = 32830, + [SMALL_STATE(1551)] = 32920, + [SMALL_STATE(1552)] = 33006, + [SMALL_STATE(1553)] = 33076, + [SMALL_STATE(1554)] = 33162, + [SMALL_STATE(1555)] = 33252, + [SMALL_STATE(1556)] = 33320, + [SMALL_STATE(1557)] = 33412, + [SMALL_STATE(1558)] = 33490, + [SMALL_STATE(1559)] = 33564, + [SMALL_STATE(1560)] = 33650, + [SMALL_STATE(1561)] = 33740, + [SMALL_STATE(1562)] = 33832, + [SMALL_STATE(1563)] = 33889, + [SMALL_STATE(1564)] = 33952, + [SMALL_STATE(1565)] = 34017, + [SMALL_STATE(1566)] = 34076, + [SMALL_STATE(1567)] = 34139, + [SMALL_STATE(1568)] = 34196, + [SMALL_STATE(1569)] = 34263, + [SMALL_STATE(1570)] = 34320, + [SMALL_STATE(1571)] = 34387, + [SMALL_STATE(1572)] = 34454, + [SMALL_STATE(1573)] = 34513, + [SMALL_STATE(1574)] = 34573, + [SMALL_STATE(1575)] = 34633, + [SMALL_STATE(1576)] = 34693, + [SMALL_STATE(1577)] = 34749, + [SMALL_STATE(1578)] = 34805, + [SMALL_STATE(1579)] = 34865, + [SMALL_STATE(1580)] = 34929, + [SMALL_STATE(1581)] = 34987, + [SMALL_STATE(1582)] = 35045, + [SMALL_STATE(1583)] = 35109, + [SMALL_STATE(1584)] = 35169, + [SMALL_STATE(1585)] = 35225, + [SMALL_STATE(1586)] = 35283, + [SMALL_STATE(1587)] = 35341, + [SMALL_STATE(1588)] = 35401, + [SMALL_STATE(1589)] = 35457, + [SMALL_STATE(1590)] = 35521, + [SMALL_STATE(1591)] = 35585, + [SMALL_STATE(1592)] = 35645, + [SMALL_STATE(1593)] = 35740, + [SMALL_STATE(1594)] = 35795, + [SMALL_STATE(1595)] = 35890, + [SMALL_STATE(1596)] = 35945, + [SMALL_STATE(1597)] = 36000, + [SMALL_STATE(1598)] = 36055, + [SMALL_STATE(1599)] = 36114, + [SMALL_STATE(1600)] = 36169, + [SMALL_STATE(1601)] = 36224, + [SMALL_STATE(1602)] = 36319, + [SMALL_STATE(1603)] = 36378, + [SMALL_STATE(1604)] = 36473, + [SMALL_STATE(1605)] = 36532, + [SMALL_STATE(1606)] = 36627, + [SMALL_STATE(1607)] = 36684, + [SMALL_STATE(1608)] = 36779, + [SMALL_STATE(1609)] = 36836, + [SMALL_STATE(1610)] = 36931, + [SMALL_STATE(1611)] = 37026, + [SMALL_STATE(1612)] = 37121, + [SMALL_STATE(1613)] = 37216, + [SMALL_STATE(1614)] = 37275, + [SMALL_STATE(1615)] = 37330, + [SMALL_STATE(1616)] = 37387, + [SMALL_STATE(1617)] = 37444, + [SMALL_STATE(1618)] = 37501, + [SMALL_STATE(1619)] = 37558, + [SMALL_STATE(1620)] = 37613, + [SMALL_STATE(1621)] = 37670, + [SMALL_STATE(1622)] = 37759, + [SMALL_STATE(1623)] = 37848, + [SMALL_STATE(1624)] = 37937, + [SMALL_STATE(1625)] = 38032, + [SMALL_STATE(1626)] = 38127, + [SMALL_STATE(1627)] = 38219, + [SMALL_STATE(1628)] = 38285, + [SMALL_STATE(1629)] = 38353, + [SMALL_STATE(1630)] = 38409, + [SMALL_STATE(1631)] = 38495, + [SMALL_STATE(1632)] = 38549, + [SMALL_STATE(1633)] = 38605, + [SMALL_STATE(1634)] = 38659, + [SMALL_STATE(1635)] = 38715, + [SMALL_STATE(1636)] = 38801, + [SMALL_STATE(1637)] = 38883, + [SMALL_STATE(1638)] = 38969, + [SMALL_STATE(1639)] = 39055, + [SMALL_STATE(1640)] = 39141, + [SMALL_STATE(1641)] = 39195, + [SMALL_STATE(1642)] = 39283, + [SMALL_STATE(1643)] = 39337, + [SMALL_STATE(1644)] = 39393, + [SMALL_STATE(1645)] = 39485, + [SMALL_STATE(1646)] = 39539, + [SMALL_STATE(1647)] = 39593, + [SMALL_STATE(1648)] = 39685, + [SMALL_STATE(1649)] = 39739, + [SMALL_STATE(1650)] = 39803, + [SMALL_STATE(1651)] = 39891, + [SMALL_STATE(1652)] = 39947, + [SMALL_STATE(1653)] = 40019, + [SMALL_STATE(1654)] = 40111, + [SMALL_STATE(1655)] = 40165, + [SMALL_STATE(1656)] = 40253, + [SMALL_STATE(1657)] = 40331, + [SMALL_STATE(1658)] = 40411, + [SMALL_STATE(1659)] = 40467, + [SMALL_STATE(1660)] = 40523, + [SMALL_STATE(1661)] = 40579, + [SMALL_STATE(1662)] = 40665, + [SMALL_STATE(1663)] = 40745, + [SMALL_STATE(1664)] = 40833, + [SMALL_STATE(1665)] = 40889, + [SMALL_STATE(1666)] = 40963, + [SMALL_STATE(1667)] = 41055, + [SMALL_STATE(1668)] = 41143, + [SMALL_STATE(1669)] = 41235, + [SMALL_STATE(1670)] = 41291, + [SMALL_STATE(1671)] = 41345, + [SMALL_STATE(1672)] = 41399, + [SMALL_STATE(1673)] = 41455, + [SMALL_STATE(1674)] = 41525, + [SMALL_STATE(1675)] = 41583, + [SMALL_STATE(1676)] = 41639, + [SMALL_STATE(1677)] = 41693, + [SMALL_STATE(1678)] = 41747, + [SMALL_STATE(1679)] = 41801, + [SMALL_STATE(1680)] = 41855, + [SMALL_STATE(1681)] = 41909, + [SMALL_STATE(1682)] = 41965, + [SMALL_STATE(1683)] = 42047, + [SMALL_STATE(1684)] = 42101, + [SMALL_STATE(1685)] = 42157, + [SMALL_STATE(1686)] = 42213, + [SMALL_STATE(1687)] = 42269, + [SMALL_STATE(1688)] = 42358, + [SMALL_STATE(1689)] = 42411, + [SMALL_STATE(1690)] = 42498, + [SMALL_STATE(1691)] = 42551, + [SMALL_STATE(1692)] = 42638, + [SMALL_STATE(1693)] = 42701, + [SMALL_STATE(1694)] = 42770, + [SMALL_STATE(1695)] = 42837, + [SMALL_STATE(1696)] = 42908, + [SMALL_STATE(1697)] = 42985, + [SMALL_STATE(1698)] = 43064, + [SMALL_STATE(1699)] = 43129, + [SMALL_STATE(1700)] = 43214, + [SMALL_STATE(1701)] = 43299, + [SMALL_STATE(1702)] = 43372, + [SMALL_STATE(1703)] = 43453, + [SMALL_STATE(1704)] = 43506, + [SMALL_STATE(1705)] = 43559, + [SMALL_STATE(1706)] = 43612, + [SMALL_STATE(1707)] = 43665, + [SMALL_STATE(1708)] = 43754, + [SMALL_STATE(1709)] = 43807, + [SMALL_STATE(1710)] = 43860, + [SMALL_STATE(1711)] = 43913, + [SMALL_STATE(1712)] = 43972, + [SMALL_STATE(1713)] = 44031, + [SMALL_STATE(1714)] = 44120, + [SMALL_STATE(1715)] = 44207, + [SMALL_STATE(1716)] = 44260, + [SMALL_STATE(1717)] = 44313, + [SMALL_STATE(1718)] = 44366, + [SMALL_STATE(1719)] = 44455, + [SMALL_STATE(1720)] = 44508, + [SMALL_STATE(1721)] = 44561, + [SMALL_STATE(1722)] = 44650, + [SMALL_STATE(1723)] = 44703, + [SMALL_STATE(1724)] = 44792, + [SMALL_STATE(1725)] = 44845, + [SMALL_STATE(1726)] = 44926, + [SMALL_STATE(1727)] = 45011, + [SMALL_STATE(1728)] = 45064, + [SMALL_STATE(1729)] = 45117, + [SMALL_STATE(1730)] = 45170, + [SMALL_STATE(1731)] = 45223, + [SMALL_STATE(1732)] = 45276, + [SMALL_STATE(1733)] = 45329, + [SMALL_STATE(1734)] = 45382, + [SMALL_STATE(1735)] = 45435, + [SMALL_STATE(1736)] = 45488, + [SMALL_STATE(1737)] = 45541, + [SMALL_STATE(1738)] = 45594, + [SMALL_STATE(1739)] = 45647, + [SMALL_STATE(1740)] = 45700, + [SMALL_STATE(1741)] = 45753, + [SMALL_STATE(1742)] = 45806, + [SMALL_STATE(1743)] = 45859, + [SMALL_STATE(1744)] = 45912, + [SMALL_STATE(1745)] = 45997, + [SMALL_STATE(1746)] = 46050, + [SMALL_STATE(1747)] = 46103, + [SMALL_STATE(1748)] = 46156, + [SMALL_STATE(1749)] = 46209, + [SMALL_STATE(1750)] = 46262, + [SMALL_STATE(1751)] = 46315, + [SMALL_STATE(1752)] = 46368, + [SMALL_STATE(1753)] = 46455, + [SMALL_STATE(1754)] = 46544, + [SMALL_STATE(1755)] = 46597, + [SMALL_STATE(1756)] = 46650, + [SMALL_STATE(1757)] = 46735, + [SMALL_STATE(1758)] = 46788, + [SMALL_STATE(1759)] = 46841, + [SMALL_STATE(1760)] = 46930, + [SMALL_STATE(1761)] = 46983, + [SMALL_STATE(1762)] = 47070, + [SMALL_STATE(1763)] = 47123, + [SMALL_STATE(1764)] = 47186, + [SMALL_STATE(1765)] = 47255, + [SMALL_STATE(1766)] = 47322, + [SMALL_STATE(1767)] = 47393, + [SMALL_STATE(1768)] = 47470, + [SMALL_STATE(1769)] = 47549, + [SMALL_STATE(1770)] = 47614, + [SMALL_STATE(1771)] = 47699, + [SMALL_STATE(1772)] = 47784, + [SMALL_STATE(1773)] = 47857, + [SMALL_STATE(1774)] = 47938, + [SMALL_STATE(1775)] = 47991, + [SMALL_STATE(1776)] = 48044, + [SMALL_STATE(1777)] = 48097, + [SMALL_STATE(1778)] = 48150, + [SMALL_STATE(1779)] = 48203, + [SMALL_STATE(1780)] = 48290, + [SMALL_STATE(1781)] = 48343, + [SMALL_STATE(1782)] = 48396, + [SMALL_STATE(1783)] = 48449, + [SMALL_STATE(1784)] = 48502, + [SMALL_STATE(1785)] = 48555, + [SMALL_STATE(1786)] = 48608, + [SMALL_STATE(1787)] = 48661, + [SMALL_STATE(1788)] = 48714, + [SMALL_STATE(1789)] = 48767, + [SMALL_STATE(1790)] = 48820, + [SMALL_STATE(1791)] = 48873, + [SMALL_STATE(1792)] = 48926, + [SMALL_STATE(1793)] = 48979, + [SMALL_STATE(1794)] = 49032, + [SMALL_STATE(1795)] = 49119, + [SMALL_STATE(1796)] = 49172, + [SMALL_STATE(1797)] = 49225, + [SMALL_STATE(1798)] = 49312, + [SMALL_STATE(1799)] = 49365, + [SMALL_STATE(1800)] = 49418, + [SMALL_STATE(1801)] = 49471, + [SMALL_STATE(1802)] = 49558, + [SMALL_STATE(1803)] = 49643, + [SMALL_STATE(1804)] = 49696, + [SMALL_STATE(1805)] = 49781, + [SMALL_STATE(1806)] = 49834, + [SMALL_STATE(1807)] = 49887, + [SMALL_STATE(1808)] = 49940, + [SMALL_STATE(1809)] = 50029, + [SMALL_STATE(1810)] = 50116, + [SMALL_STATE(1811)] = 50169, + [SMALL_STATE(1812)] = 50222, + [SMALL_STATE(1813)] = 50275, + [SMALL_STATE(1814)] = 50336, + [SMALL_STATE(1815)] = 50389, + [SMALL_STATE(1816)] = 50478, + [SMALL_STATE(1817)] = 50531, + [SMALL_STATE(1818)] = 50620, + [SMALL_STATE(1819)] = 50673, + [SMALL_STATE(1820)] = 50726, + [SMALL_STATE(1821)] = 50813, + [SMALL_STATE(1822)] = 50866, + [SMALL_STATE(1823)] = 50955, + [SMALL_STATE(1824)] = 51044, + [SMALL_STATE(1825)] = 51097, + [SMALL_STATE(1826)] = 51150, + [SMALL_STATE(1827)] = 51203, + [SMALL_STATE(1828)] = 51292, + [SMALL_STATE(1829)] = 51345, + [SMALL_STATE(1830)] = 51398, + [SMALL_STATE(1831)] = 51487, + [SMALL_STATE(1832)] = 51564, + [SMALL_STATE(1833)] = 51617, + [SMALL_STATE(1834)] = 51704, + [SMALL_STATE(1835)] = 51757, + [SMALL_STATE(1836)] = 51846, + [SMALL_STATE(1837)] = 51935, + [SMALL_STATE(1838)] = 52024, + [SMALL_STATE(1839)] = 52113, + [SMALL_STATE(1840)] = 52202, + [SMALL_STATE(1841)] = 52291, + [SMALL_STATE(1842)] = 52380, + [SMALL_STATE(1843)] = 52433, + [SMALL_STATE(1844)] = 52520, + [SMALL_STATE(1845)] = 52609, + [SMALL_STATE(1846)] = 52662, + [SMALL_STATE(1847)] = 52715, + [SMALL_STATE(1848)] = 52768, + [SMALL_STATE(1849)] = 52857, + [SMALL_STATE(1850)] = 52910, + [SMALL_STATE(1851)] = 52969, + [SMALL_STATE(1852)] = 53022, + [SMALL_STATE(1853)] = 53103, + [SMALL_STATE(1854)] = 53188, + [SMALL_STATE(1855)] = 53277, + [SMALL_STATE(1856)] = 53362, + [SMALL_STATE(1857)] = 53447, + [SMALL_STATE(1858)] = 53536, + [SMALL_STATE(1859)] = 53625, + [SMALL_STATE(1860)] = 53714, + [SMALL_STATE(1861)] = 53767, + [SMALL_STATE(1862)] = 53844, + [SMALL_STATE(1863)] = 53897, + [SMALL_STATE(1864)] = 53986, + [SMALL_STATE(1865)] = 54075, + [SMALL_STATE(1866)] = 54162, + [SMALL_STATE(1867)] = 54251, + [SMALL_STATE(1868)] = 54340, + [SMALL_STATE(1869)] = 54427, + [SMALL_STATE(1870)] = 54516, + [SMALL_STATE(1871)] = 54569, + [SMALL_STATE(1872)] = 54658, + [SMALL_STATE(1873)] = 54747, + [SMALL_STATE(1874)] = 54800, + [SMALL_STATE(1875)] = 54889, + [SMALL_STATE(1876)] = 54948, + [SMALL_STATE(1877)] = 55037, + [SMALL_STATE(1878)] = 55126, + [SMALL_STATE(1879)] = 55215, + [SMALL_STATE(1880)] = 55304, + [SMALL_STATE(1881)] = 55393, + [SMALL_STATE(1882)] = 55482, + [SMALL_STATE(1883)] = 55535, + [SMALL_STATE(1884)] = 55624, + [SMALL_STATE(1885)] = 55713, + [SMALL_STATE(1886)] = 55802, + [SMALL_STATE(1887)] = 55891, + [SMALL_STATE(1888)] = 55980, + [SMALL_STATE(1889)] = 56069, + [SMALL_STATE(1890)] = 56122, + [SMALL_STATE(1891)] = 56175, + [SMALL_STATE(1892)] = 56262, + [SMALL_STATE(1893)] = 56349, + [SMALL_STATE(1894)] = 56402, + [SMALL_STATE(1895)] = 56491, + [SMALL_STATE(1896)] = 56544, + [SMALL_STATE(1897)] = 56597, + [SMALL_STATE(1898)] = 56684, + [SMALL_STATE(1899)] = 56737, + [SMALL_STATE(1900)] = 56790, + [SMALL_STATE(1901)] = 56875, + [SMALL_STATE(1902)] = 56964, + [SMALL_STATE(1903)] = 57049, + [SMALL_STATE(1904)] = 57136, + [SMALL_STATE(1905)] = 57189, + [SMALL_STATE(1906)] = 57275, + [SMALL_STATE(1907)] = 57361, + [SMALL_STATE(1908)] = 57447, + [SMALL_STATE(1909)] = 57533, + [SMALL_STATE(1910)] = 57619, + [SMALL_STATE(1911)] = 57705, + [SMALL_STATE(1912)] = 57791, + [SMALL_STATE(1913)] = 57877, + [SMALL_STATE(1914)] = 57951, + [SMALL_STATE(1915)] = 58035, + [SMALL_STATE(1916)] = 58121, + [SMALL_STATE(1917)] = 58207, + [SMALL_STATE(1918)] = 58281, + [SMALL_STATE(1919)] = 58367, + [SMALL_STATE(1920)] = 58453, + [SMALL_STATE(1921)] = 58527, + [SMALL_STATE(1922)] = 58613, + [SMALL_STATE(1923)] = 58687, + [SMALL_STATE(1924)] = 58773, + [SMALL_STATE(1925)] = 58859, + [SMALL_STATE(1926)] = 58945, + [SMALL_STATE(1927)] = 59019, + [SMALL_STATE(1928)] = 59105, + [SMALL_STATE(1929)] = 59191, + [SMALL_STATE(1930)] = 59277, + [SMALL_STATE(1931)] = 59363, + [SMALL_STATE(1932)] = 59449, + [SMALL_STATE(1933)] = 59535, + [SMALL_STATE(1934)] = 59621, + [SMALL_STATE(1935)] = 59707, + [SMALL_STATE(1936)] = 59793, + [SMALL_STATE(1937)] = 59879, + [SMALL_STATE(1938)] = 59965, + [SMALL_STATE(1939)] = 60051, + [SMALL_STATE(1940)] = 60137, + [SMALL_STATE(1941)] = 60221, + [SMALL_STATE(1942)] = 60307, + [SMALL_STATE(1943)] = 60382, + [SMALL_STATE(1944)] = 60457, + [SMALL_STATE(1945)] = 60532, + [SMALL_STATE(1946)] = 60607, + [SMALL_STATE(1947)] = 60682, + [SMALL_STATE(1948)] = 60757, + [SMALL_STATE(1949)] = 60832, + [SMALL_STATE(1950)] = 60907, + [SMALL_STATE(1951)] = 60954, + [SMALL_STATE(1952)] = 61001, + [SMALL_STATE(1953)] = 61048, + [SMALL_STATE(1954)] = 61110, + [SMALL_STATE(1955)] = 61172, + [SMALL_STATE(1956)] = 61234, + [SMALL_STATE(1957)] = 61296, + [SMALL_STATE(1958)] = 61358, + [SMALL_STATE(1959)] = 61420, + [SMALL_STATE(1960)] = 61482, + [SMALL_STATE(1961)] = 61544, + [SMALL_STATE(1962)] = 61606, + [SMALL_STATE(1963)] = 61665, + [SMALL_STATE(1964)] = 61724, + [SMALL_STATE(1965)] = 61760, + [SMALL_STATE(1966)] = 61808, + [SMALL_STATE(1967)] = 61844, + [SMALL_STATE(1968)] = 61889, + [SMALL_STATE(1969)] = 61942, + [SMALL_STATE(1970)] = 61987, + [SMALL_STATE(1971)] = 62024, + [SMALL_STATE(1972)] = 62061, + [SMALL_STATE(1973)] = 62098, + [SMALL_STATE(1974)] = 62135, + [SMALL_STATE(1975)] = 62180, + [SMALL_STATE(1976)] = 62216, + [SMALL_STATE(1977)] = 62256, + [SMALL_STATE(1978)] = 62296, + [SMALL_STATE(1979)] = 62332, + [SMALL_STATE(1980)] = 62366, + [SMALL_STATE(1981)] = 62400, + [SMALL_STATE(1982)] = 62440, + [SMALL_STATE(1983)] = 62476, + [SMALL_STATE(1984)] = 62516, + [SMALL_STATE(1985)] = 62550, + [SMALL_STATE(1986)] = 62586, + [SMALL_STATE(1987)] = 62620, + [SMALL_STATE(1988)] = 62653, + [SMALL_STATE(1989)] = 62686, + [SMALL_STATE(1990)] = 62737, + [SMALL_STATE(1991)] = 62768, + [SMALL_STATE(1992)] = 62801, + [SMALL_STATE(1993)] = 62834, + [SMALL_STATE(1994)] = 62866, + [SMALL_STATE(1995)] = 62912, + [SMALL_STATE(1996)] = 62956, + [SMALL_STATE(1997)] = 62988, + [SMALL_STATE(1998)] = 63020, + [SMALL_STATE(1999)] = 63080, + [SMALL_STATE(2000)] = 63140, + [SMALL_STATE(2001)] = 63169, + [SMALL_STATE(2002)] = 63202, + [SMALL_STATE(2003)] = 63231, + [SMALL_STATE(2004)] = 63262, + [SMALL_STATE(2005)] = 63291, + [SMALL_STATE(2006)] = 63320, + [SMALL_STATE(2007)] = 63349, + [SMALL_STATE(2008)] = 63378, + [SMALL_STATE(2009)] = 63433, + [SMALL_STATE(2010)] = 63464, + [SMALL_STATE(2011)] = 63495, + [SMALL_STATE(2012)] = 63524, + [SMALL_STATE(2013)] = 63555, + [SMALL_STATE(2014)] = 63586, + [SMALL_STATE(2015)] = 63615, + [SMALL_STATE(2016)] = 63648, + [SMALL_STATE(2017)] = 63679, + [SMALL_STATE(2018)] = 63712, + [SMALL_STATE(2019)] = 63745, + [SMALL_STATE(2020)] = 63776, + [SMALL_STATE(2021)] = 63809, + [SMALL_STATE(2022)] = 63862, + [SMALL_STATE(2023)] = 63903, + [SMALL_STATE(2024)] = 63936, + [SMALL_STATE(2025)] = 63979, + [SMALL_STATE(2026)] = 64032, + [SMALL_STATE(2027)] = 64063, + [SMALL_STATE(2028)] = 64092, + [SMALL_STATE(2029)] = 64120, + [SMALL_STATE(2030)] = 64148, + [SMALL_STATE(2031)] = 64176, + [SMALL_STATE(2032)] = 64220, + [SMALL_STATE(2033)] = 64248, + [SMALL_STATE(2034)] = 64276, + [SMALL_STATE(2035)] = 64304, + [SMALL_STATE(2036)] = 64332, + [SMALL_STATE(2037)] = 64360, + [SMALL_STATE(2038)] = 64388, + [SMALL_STATE(2039)] = 64416, + [SMALL_STATE(2040)] = 64444, + [SMALL_STATE(2041)] = 64472, + [SMALL_STATE(2042)] = 64502, + [SMALL_STATE(2043)] = 64530, + [SMALL_STATE(2044)] = 64558, + [SMALL_STATE(2045)] = 64586, + [SMALL_STATE(2046)] = 64614, + [SMALL_STATE(2047)] = 64642, + [SMALL_STATE(2048)] = 64670, + [SMALL_STATE(2049)] = 64698, + [SMALL_STATE(2050)] = 64728, + [SMALL_STATE(2051)] = 64756, + [SMALL_STATE(2052)] = 64784, + [SMALL_STATE(2053)] = 64812, + [SMALL_STATE(2054)] = 64840, + [SMALL_STATE(2055)] = 64868, + [SMALL_STATE(2056)] = 64896, + [SMALL_STATE(2057)] = 64924, + [SMALL_STATE(2058)] = 64952, + [SMALL_STATE(2059)] = 64980, + [SMALL_STATE(2060)] = 65008, + [SMALL_STATE(2061)] = 65036, + [SMALL_STATE(2062)] = 65064, + [SMALL_STATE(2063)] = 65092, + [SMALL_STATE(2064)] = 65120, + [SMALL_STATE(2065)] = 65148, + [SMALL_STATE(2066)] = 65176, + [SMALL_STATE(2067)] = 65204, + [SMALL_STATE(2068)] = 65232, + [SMALL_STATE(2069)] = 65261, + [SMALL_STATE(2070)] = 65296, + [SMALL_STATE(2071)] = 65325, + [SMALL_STATE(2072)] = 65356, + [SMALL_STATE(2073)] = 65385, + [SMALL_STATE(2074)] = 65417, + [SMALL_STATE(2075)] = 65449, + [SMALL_STATE(2076)] = 65481, + [SMALL_STATE(2077)] = 65513, + [SMALL_STATE(2078)] = 65545, + [SMALL_STATE(2079)] = 65577, + [SMALL_STATE(2080)] = 65609, + [SMALL_STATE(2081)] = 65641, + [SMALL_STATE(2082)] = 65673, + [SMALL_STATE(2083)] = 65705, + [SMALL_STATE(2084)] = 65737, + [SMALL_STATE(2085)] = 65767, + [SMALL_STATE(2086)] = 65811, + [SMALL_STATE(2087)] = 65857, + [SMALL_STATE(2088)] = 65889, + [SMALL_STATE(2089)] = 65917, + [SMALL_STATE(2090)] = 65960, + [SMALL_STATE(2091)] = 65989, + [SMALL_STATE(2092)] = 66032, + [SMALL_STATE(2093)] = 66069, + [SMALL_STATE(2094)] = 66098, + [SMALL_STATE(2095)] = 66141, + [SMALL_STATE(2096)] = 66184, + [SMALL_STATE(2097)] = 66227, + [SMALL_STATE(2098)] = 66270, + [SMALL_STATE(2099)] = 66294, + [SMALL_STATE(2100)] = 66332, + [SMALL_STATE(2101)] = 66360, + [SMALL_STATE(2102)] = 66388, + [SMALL_STATE(2103)] = 66426, + [SMALL_STATE(2104)] = 66454, + [SMALL_STATE(2105)] = 66482, + [SMALL_STATE(2106)] = 66510, + [SMALL_STATE(2107)] = 66538, + [SMALL_STATE(2108)] = 66568, + [SMALL_STATE(2109)] = 66596, + [SMALL_STATE(2110)] = 66626, + [SMALL_STATE(2111)] = 66654, + [SMALL_STATE(2112)] = 66682, + [SMALL_STATE(2113)] = 66706, + [SMALL_STATE(2114)] = 66746, + [SMALL_STATE(2115)] = 66784, + [SMALL_STATE(2116)] = 66808, + [SMALL_STATE(2117)] = 66848, + [SMALL_STATE(2118)] = 66886, + [SMALL_STATE(2119)] = 66920, + [SMALL_STATE(2120)] = 66954, + [SMALL_STATE(2121)] = 66982, + [SMALL_STATE(2122)] = 67022, + [SMALL_STATE(2123)] = 67062, + [SMALL_STATE(2124)] = 67102, + [SMALL_STATE(2125)] = 67130, + [SMALL_STATE(2126)] = 67158, + [SMALL_STATE(2127)] = 67186, + [SMALL_STATE(2128)] = 67214, + [SMALL_STATE(2129)] = 67254, + [SMALL_STATE(2130)] = 67294, + [SMALL_STATE(2131)] = 67332, + [SMALL_STATE(2132)] = 67356, + [SMALL_STATE(2133)] = 67380, + [SMALL_STATE(2134)] = 67420, + [SMALL_STATE(2135)] = 67460, + [SMALL_STATE(2136)] = 67500, + [SMALL_STATE(2137)] = 67528, + [SMALL_STATE(2138)] = 67558, + [SMALL_STATE(2139)] = 67596, + [SMALL_STATE(2140)] = 67626, + [SMALL_STATE(2141)] = 67664, + [SMALL_STATE(2142)] = 67702, + [SMALL_STATE(2143)] = 67740, + [SMALL_STATE(2144)] = 67768, + [SMALL_STATE(2145)] = 67803, + [SMALL_STATE(2146)] = 67826, + [SMALL_STATE(2147)] = 67849, + [SMALL_STATE(2148)] = 67872, + [SMALL_STATE(2149)] = 67895, + [SMALL_STATE(2150)] = 67918, + [SMALL_STATE(2151)] = 67941, + [SMALL_STATE(2152)] = 67964, + [SMALL_STATE(2153)] = 67987, + [SMALL_STATE(2154)] = 68024, + [SMALL_STATE(2155)] = 68065, + [SMALL_STATE(2156)] = 68088, + [SMALL_STATE(2157)] = 68111, + [SMALL_STATE(2158)] = 68134, + [SMALL_STATE(2159)] = 68157, + [SMALL_STATE(2160)] = 68180, + [SMALL_STATE(2161)] = 68217, + [SMALL_STATE(2162)] = 68240, + [SMALL_STATE(2163)] = 68263, + [SMALL_STATE(2164)] = 68286, + [SMALL_STATE(2165)] = 68309, + [SMALL_STATE(2166)] = 68332, + [SMALL_STATE(2167)] = 68365, + [SMALL_STATE(2168)] = 68388, + [SMALL_STATE(2169)] = 68411, + [SMALL_STATE(2170)] = 68442, + [SMALL_STATE(2171)] = 68473, + [SMALL_STATE(2172)] = 68504, + [SMALL_STATE(2173)] = 68527, + [SMALL_STATE(2174)] = 68564, + [SMALL_STATE(2175)] = 68587, + [SMALL_STATE(2176)] = 68624, + [SMALL_STATE(2177)] = 68659, + [SMALL_STATE(2178)] = 68682, + [SMALL_STATE(2179)] = 68723, + [SMALL_STATE(2180)] = 68746, + [SMALL_STATE(2181)] = 68787, + [SMALL_STATE(2182)] = 68810, + [SMALL_STATE(2183)] = 68833, + [SMALL_STATE(2184)] = 68868, + [SMALL_STATE(2185)] = 68891, + [SMALL_STATE(2186)] = 68932, + [SMALL_STATE(2187)] = 68955, + [SMALL_STATE(2188)] = 68978, + [SMALL_STATE(2189)] = 69001, + [SMALL_STATE(2190)] = 69024, + [SMALL_STATE(2191)] = 69047, + [SMALL_STATE(2192)] = 69070, + [SMALL_STATE(2193)] = 69093, + [SMALL_STATE(2194)] = 69116, + [SMALL_STATE(2195)] = 69139, + [SMALL_STATE(2196)] = 69170, + [SMALL_STATE(2197)] = 69208, + [SMALL_STATE(2198)] = 69246, + [SMALL_STATE(2199)] = 69280, + [SMALL_STATE(2200)] = 69318, + [SMALL_STATE(2201)] = 69346, + [SMALL_STATE(2202)] = 69378, + [SMALL_STATE(2203)] = 69410, + [SMALL_STATE(2204)] = 69448, + [SMALL_STATE(2205)] = 69476, + [SMALL_STATE(2206)] = 69504, + [SMALL_STATE(2207)] = 69530, + [SMALL_STATE(2208)] = 69562, + [SMALL_STATE(2209)] = 69586, + [SMALL_STATE(2210)] = 69614, + [SMALL_STATE(2211)] = 69638, + [SMALL_STATE(2212)] = 69670, + [SMALL_STATE(2213)] = 69698, + [SMALL_STATE(2214)] = 69736, + [SMALL_STATE(2215)] = 69774, + [SMALL_STATE(2216)] = 69808, + [SMALL_STATE(2217)] = 69840, + [SMALL_STATE(2218)] = 69864, + [SMALL_STATE(2219)] = 69902, + [SMALL_STATE(2220)] = 69938, + [SMALL_STATE(2221)] = 69962, + [SMALL_STATE(2222)] = 70000, + [SMALL_STATE(2223)] = 70024, + [SMALL_STATE(2224)] = 70062, + [SMALL_STATE(2225)] = 70094, + [SMALL_STATE(2226)] = 70122, + [SMALL_STATE(2227)] = 70160, + [SMALL_STATE(2228)] = 70186, + [SMALL_STATE(2229)] = 70218, + [SMALL_STATE(2230)] = 70256, + [SMALL_STATE(2231)] = 70282, + [SMALL_STATE(2232)] = 70308, + [SMALL_STATE(2233)] = 70346, + [SMALL_STATE(2234)] = 70374, + [SMALL_STATE(2235)] = 70406, + [SMALL_STATE(2236)] = 70444, + [SMALL_STATE(2237)] = 70482, + [SMALL_STATE(2238)] = 70520, + [SMALL_STATE(2239)] = 70552, + [SMALL_STATE(2240)] = 70584, + [SMALL_STATE(2241)] = 70616, + [SMALL_STATE(2242)] = 70654, + [SMALL_STATE(2243)] = 70686, + [SMALL_STATE(2244)] = 70718, + [SMALL_STATE(2245)] = 70753, + [SMALL_STATE(2246)] = 70788, + [SMALL_STATE(2247)] = 70821, + [SMALL_STATE(2248)] = 70842, + [SMALL_STATE(2249)] = 70877, + [SMALL_STATE(2250)] = 70912, + [SMALL_STATE(2251)] = 70947, + [SMALL_STATE(2252)] = 70968, + [SMALL_STATE(2253)] = 70995, + [SMALL_STATE(2254)] = 71020, + [SMALL_STATE(2255)] = 71053, + [SMALL_STATE(2256)] = 71088, + [SMALL_STATE(2257)] = 71123, + [SMALL_STATE(2258)] = 71158, + [SMALL_STATE(2259)] = 71187, + [SMALL_STATE(2260)] = 71222, + [SMALL_STATE(2261)] = 71257, + [SMALL_STATE(2262)] = 71282, + [SMALL_STATE(2263)] = 71307, + [SMALL_STATE(2264)] = 71328, + [SMALL_STATE(2265)] = 71363, + [SMALL_STATE(2266)] = 71398, + [SMALL_STATE(2267)] = 71433, + [SMALL_STATE(2268)] = 71468, + [SMALL_STATE(2269)] = 71489, + [SMALL_STATE(2270)] = 71524, + [SMALL_STATE(2271)] = 71559, + [SMALL_STATE(2272)] = 71594, + [SMALL_STATE(2273)] = 71629, + [SMALL_STATE(2274)] = 71664, + [SMALL_STATE(2275)] = 71699, + [SMALL_STATE(2276)] = 71732, + [SMALL_STATE(2277)] = 71767, + [SMALL_STATE(2278)] = 71802, + [SMALL_STATE(2279)] = 71837, + [SMALL_STATE(2280)] = 71872, + [SMALL_STATE(2281)] = 71907, + [SMALL_STATE(2282)] = 71942, + [SMALL_STATE(2283)] = 71977, + [SMALL_STATE(2284)] = 72012, + [SMALL_STATE(2285)] = 72047, + [SMALL_STATE(2286)] = 72082, + [SMALL_STATE(2287)] = 72103, + [SMALL_STATE(2288)] = 72136, + [SMALL_STATE(2289)] = 72171, + [SMALL_STATE(2290)] = 72206, + [SMALL_STATE(2291)] = 72227, + [SMALL_STATE(2292)] = 72262, + [SMALL_STATE(2293)] = 72297, + [SMALL_STATE(2294)] = 72332, + [SMALL_STATE(2295)] = 72367, + [SMALL_STATE(2296)] = 72400, + [SMALL_STATE(2297)] = 72435, + [SMALL_STATE(2298)] = 72470, + [SMALL_STATE(2299)] = 72505, + [SMALL_STATE(2300)] = 72540, + [SMALL_STATE(2301)] = 72570, + [SMALL_STATE(2302)] = 72598, + [SMALL_STATE(2303)] = 72630, + [SMALL_STATE(2304)] = 72660, + [SMALL_STATE(2305)] = 72692, + [SMALL_STATE(2306)] = 72724, + [SMALL_STATE(2307)] = 72746, + [SMALL_STATE(2308)] = 72774, + [SMALL_STATE(2309)] = 72806, + [SMALL_STATE(2310)] = 72838, + [SMALL_STATE(2311)] = 72864, + [SMALL_STATE(2312)] = 72896, + [SMALL_STATE(2313)] = 72928, + [SMALL_STATE(2314)] = 72958, + [SMALL_STATE(2315)] = 72988, + [SMALL_STATE(2316)] = 73018, + [SMALL_STATE(2317)] = 73048, + [SMALL_STATE(2318)] = 73080, + [SMALL_STATE(2319)] = 73112, + [SMALL_STATE(2320)] = 73144, + [SMALL_STATE(2321)] = 73176, + [SMALL_STATE(2322)] = 73208, + [SMALL_STATE(2323)] = 73240, + [SMALL_STATE(2324)] = 73272, + [SMALL_STATE(2325)] = 73294, + [SMALL_STATE(2326)] = 73322, + [SMALL_STATE(2327)] = 73354, + [SMALL_STATE(2328)] = 73386, + [SMALL_STATE(2329)] = 73418, + [SMALL_STATE(2330)] = 73450, + [SMALL_STATE(2331)] = 73478, + [SMALL_STATE(2332)] = 73504, + [SMALL_STATE(2333)] = 73536, + [SMALL_STATE(2334)] = 73568, + [SMALL_STATE(2335)] = 73600, + [SMALL_STATE(2336)] = 73632, + [SMALL_STATE(2337)] = 73664, + [SMALL_STATE(2338)] = 73696, + [SMALL_STATE(2339)] = 73728, + [SMALL_STATE(2340)] = 73760, + [SMALL_STATE(2341)] = 73792, + [SMALL_STATE(2342)] = 73820, + [SMALL_STATE(2343)] = 73850, + [SMALL_STATE(2344)] = 73876, + [SMALL_STATE(2345)] = 73908, + [SMALL_STATE(2346)] = 73938, + [SMALL_STATE(2347)] = 73960, + [SMALL_STATE(2348)] = 73992, + [SMALL_STATE(2349)] = 74014, + [SMALL_STATE(2350)] = 74046, + [SMALL_STATE(2351)] = 74076, + [SMALL_STATE(2352)] = 74098, + [SMALL_STATE(2353)] = 74128, + [SMALL_STATE(2354)] = 74160, + [SMALL_STATE(2355)] = 74182, + [SMALL_STATE(2356)] = 74214, + [SMALL_STATE(2357)] = 74240, + [SMALL_STATE(2358)] = 74272, + [SMALL_STATE(2359)] = 74301, + [SMALL_STATE(2360)] = 74330, + [SMALL_STATE(2361)] = 74357, + [SMALL_STATE(2362)] = 74380, + [SMALL_STATE(2363)] = 74403, + [SMALL_STATE(2364)] = 74432, + [SMALL_STATE(2365)] = 74461, + [SMALL_STATE(2366)] = 74490, + [SMALL_STATE(2367)] = 74519, + [SMALL_STATE(2368)] = 74548, + [SMALL_STATE(2369)] = 74577, + [SMALL_STATE(2370)] = 74606, + [SMALL_STATE(2371)] = 74635, + [SMALL_STATE(2372)] = 74664, + [SMALL_STATE(2373)] = 74693, + [SMALL_STATE(2374)] = 74714, + [SMALL_STATE(2375)] = 74741, + [SMALL_STATE(2376)] = 74764, + [SMALL_STATE(2377)] = 74793, + [SMALL_STATE(2378)] = 74812, + [SMALL_STATE(2379)] = 74841, + [SMALL_STATE(2380)] = 74870, + [SMALL_STATE(2381)] = 74899, + [SMALL_STATE(2382)] = 74928, + [SMALL_STATE(2383)] = 74957, + [SMALL_STATE(2384)] = 74986, + [SMALL_STATE(2385)] = 75013, + [SMALL_STATE(2386)] = 75040, + [SMALL_STATE(2387)] = 75069, + [SMALL_STATE(2388)] = 75098, + [SMALL_STATE(2389)] = 75125, + [SMALL_STATE(2390)] = 75154, + [SMALL_STATE(2391)] = 75183, + [SMALL_STATE(2392)] = 75206, + [SMALL_STATE(2393)] = 75235, + [SMALL_STATE(2394)] = 75264, + [SMALL_STATE(2395)] = 75287, + [SMALL_STATE(2396)] = 75308, + [SMALL_STATE(2397)] = 75331, + [SMALL_STATE(2398)] = 75354, + [SMALL_STATE(2399)] = 75373, + [SMALL_STATE(2400)] = 75402, + [SMALL_STATE(2401)] = 75431, + [SMALL_STATE(2402)] = 75454, + [SMALL_STATE(2403)] = 75479, + [SMALL_STATE(2404)] = 75508, + [SMALL_STATE(2405)] = 75537, + [SMALL_STATE(2406)] = 75566, + [SMALL_STATE(2407)] = 75587, + [SMALL_STATE(2408)] = 75610, + [SMALL_STATE(2409)] = 75639, + [SMALL_STATE(2410)] = 75668, + [SMALL_STATE(2411)] = 75697, + [SMALL_STATE(2412)] = 75722, + [SMALL_STATE(2413)] = 75751, + [SMALL_STATE(2414)] = 75780, + [SMALL_STATE(2415)] = 75801, + [SMALL_STATE(2416)] = 75822, + [SMALL_STATE(2417)] = 75851, + [SMALL_STATE(2418)] = 75880, + [SMALL_STATE(2419)] = 75909, + [SMALL_STATE(2420)] = 75938, + [SMALL_STATE(2421)] = 75967, + [SMALL_STATE(2422)] = 75988, + [SMALL_STATE(2423)] = 76013, + [SMALL_STATE(2424)] = 76042, + [SMALL_STATE(2425)] = 76071, + [SMALL_STATE(2426)] = 76100, + [SMALL_STATE(2427)] = 76129, + [SMALL_STATE(2428)] = 76158, + [SMALL_STATE(2429)] = 76187, + [SMALL_STATE(2430)] = 76208, + [SMALL_STATE(2431)] = 76233, + [SMALL_STATE(2432)] = 76256, + [SMALL_STATE(2433)] = 76285, + [SMALL_STATE(2434)] = 76314, + [SMALL_STATE(2435)] = 76337, + [SMALL_STATE(2436)] = 76364, + [SMALL_STATE(2437)] = 76393, + [SMALL_STATE(2438)] = 76422, + [SMALL_STATE(2439)] = 76451, + [SMALL_STATE(2440)] = 76480, + [SMALL_STATE(2441)] = 76509, + [SMALL_STATE(2442)] = 76538, + [SMALL_STATE(2443)] = 76559, + [SMALL_STATE(2444)] = 76582, + [SMALL_STATE(2445)] = 76605, + [SMALL_STATE(2446)] = 76628, + [SMALL_STATE(2447)] = 76651, + [SMALL_STATE(2448)] = 76680, + [SMALL_STATE(2449)] = 76709, + [SMALL_STATE(2450)] = 76732, + [SMALL_STATE(2451)] = 76761, + [SMALL_STATE(2452)] = 76790, + [SMALL_STATE(2453)] = 76819, + [SMALL_STATE(2454)] = 76840, + [SMALL_STATE(2455)] = 76869, + [SMALL_STATE(2456)] = 76898, + [SMALL_STATE(2457)] = 76916, + [SMALL_STATE(2458)] = 76942, + [SMALL_STATE(2459)] = 76966, + [SMALL_STATE(2460)] = 76990, + [SMALL_STATE(2461)] = 77016, + [SMALL_STATE(2462)] = 77034, + [SMALL_STATE(2463)] = 77060, + [SMALL_STATE(2464)] = 77086, + [SMALL_STATE(2465)] = 77104, + [SMALL_STATE(2466)] = 77122, + [SMALL_STATE(2467)] = 77144, + [SMALL_STATE(2468)] = 77164, + [SMALL_STATE(2469)] = 77190, + [SMALL_STATE(2470)] = 77216, + [SMALL_STATE(2471)] = 77242, + [SMALL_STATE(2472)] = 77268, + [SMALL_STATE(2473)] = 77294, + [SMALL_STATE(2474)] = 77314, + [SMALL_STATE(2475)] = 77340, + [SMALL_STATE(2476)] = 77366, + [SMALL_STATE(2477)] = 77392, + [SMALL_STATE(2478)] = 77418, + [SMALL_STATE(2479)] = 77442, + [SMALL_STATE(2480)] = 77468, + [SMALL_STATE(2481)] = 77486, + [SMALL_STATE(2482)] = 77504, + [SMALL_STATE(2483)] = 77522, + [SMALL_STATE(2484)] = 77546, + [SMALL_STATE(2485)] = 77564, + [SMALL_STATE(2486)] = 77588, + [SMALL_STATE(2487)] = 77614, + [SMALL_STATE(2488)] = 77632, + [SMALL_STATE(2489)] = 77658, + [SMALL_STATE(2490)] = 77684, + [SMALL_STATE(2491)] = 77702, + [SMALL_STATE(2492)] = 77722, + [SMALL_STATE(2493)] = 77744, + [SMALL_STATE(2494)] = 77768, + [SMALL_STATE(2495)] = 77794, + [SMALL_STATE(2496)] = 77820, + [SMALL_STATE(2497)] = 77838, + [SMALL_STATE(2498)] = 77864, + [SMALL_STATE(2499)] = 77882, + [SMALL_STATE(2500)] = 77904, + [SMALL_STATE(2501)] = 77930, + [SMALL_STATE(2502)] = 77954, + [SMALL_STATE(2503)] = 77972, + [SMALL_STATE(2504)] = 77998, + [SMALL_STATE(2505)] = 78024, + [SMALL_STATE(2506)] = 78046, + [SMALL_STATE(2507)] = 78064, + [SMALL_STATE(2508)] = 78090, + [SMALL_STATE(2509)] = 78114, + [SMALL_STATE(2510)] = 78138, + [SMALL_STATE(2511)] = 78156, + [SMALL_STATE(2512)] = 78174, + [SMALL_STATE(2513)] = 78200, + [SMALL_STATE(2514)] = 78220, + [SMALL_STATE(2515)] = 78246, + [SMALL_STATE(2516)] = 78272, + [SMALL_STATE(2517)] = 78298, + [SMALL_STATE(2518)] = 78322, + [SMALL_STATE(2519)] = 78348, + [SMALL_STATE(2520)] = 78372, + [SMALL_STATE(2521)] = 78398, + [SMALL_STATE(2522)] = 78416, + [SMALL_STATE(2523)] = 78442, + [SMALL_STATE(2524)] = 78468, + [SMALL_STATE(2525)] = 78494, + [SMALL_STATE(2526)] = 78520, + [SMALL_STATE(2527)] = 78538, + [SMALL_STATE(2528)] = 78562, + [SMALL_STATE(2529)] = 78588, + [SMALL_STATE(2530)] = 78610, + [SMALL_STATE(2531)] = 78628, + [SMALL_STATE(2532)] = 78654, + [SMALL_STATE(2533)] = 78680, + [SMALL_STATE(2534)] = 78706, + [SMALL_STATE(2535)] = 78724, + [SMALL_STATE(2536)] = 78746, + [SMALL_STATE(2537)] = 78772, + [SMALL_STATE(2538)] = 78796, + [SMALL_STATE(2539)] = 78822, + [SMALL_STATE(2540)] = 78846, + [SMALL_STATE(2541)] = 78864, + [SMALL_STATE(2542)] = 78890, + [SMALL_STATE(2543)] = 78916, + [SMALL_STATE(2544)] = 78942, + [SMALL_STATE(2545)] = 78964, + [SMALL_STATE(2546)] = 78982, + [SMALL_STATE(2547)] = 79004, + [SMALL_STATE(2548)] = 79022, + [SMALL_STATE(2549)] = 79046, + [SMALL_STATE(2550)] = 79072, + [SMALL_STATE(2551)] = 79098, + [SMALL_STATE(2552)] = 79124, + [SMALL_STATE(2553)] = 79150, + [SMALL_STATE(2554)] = 79176, + [SMALL_STATE(2555)] = 79202, + [SMALL_STATE(2556)] = 79220, + [SMALL_STATE(2557)] = 79246, + [SMALL_STATE(2558)] = 79272, + [SMALL_STATE(2559)] = 79290, + [SMALL_STATE(2560)] = 79314, + [SMALL_STATE(2561)] = 79340, + [SMALL_STATE(2562)] = 79358, + [SMALL_STATE(2563)] = 79384, + [SMALL_STATE(2564)] = 79410, + [SMALL_STATE(2565)] = 79433, + [SMALL_STATE(2566)] = 79454, + [SMALL_STATE(2567)] = 79477, + [SMALL_STATE(2568)] = 79500, + [SMALL_STATE(2569)] = 79523, + [SMALL_STATE(2570)] = 79546, + [SMALL_STATE(2571)] = 79569, + [SMALL_STATE(2572)] = 79592, + [SMALL_STATE(2573)] = 79615, + [SMALL_STATE(2574)] = 79638, + [SMALL_STATE(2575)] = 79657, + [SMALL_STATE(2576)] = 79680, + [SMALL_STATE(2577)] = 79697, + [SMALL_STATE(2578)] = 79716, + [SMALL_STATE(2579)] = 79739, + [SMALL_STATE(2580)] = 79762, + [SMALL_STATE(2581)] = 79781, + [SMALL_STATE(2582)] = 79804, + [SMALL_STATE(2583)] = 79827, + [SMALL_STATE(2584)] = 79850, + [SMALL_STATE(2585)] = 79869, + [SMALL_STATE(2586)] = 79888, + [SMALL_STATE(2587)] = 79911, + [SMALL_STATE(2588)] = 79932, + [SMALL_STATE(2589)] = 79955, + [SMALL_STATE(2590)] = 79978, + [SMALL_STATE(2591)] = 79999, + [SMALL_STATE(2592)] = 80022, + [SMALL_STATE(2593)] = 80045, + [SMALL_STATE(2594)] = 80068, + [SMALL_STATE(2595)] = 80091, + [SMALL_STATE(2596)] = 80112, + [SMALL_STATE(2597)] = 80135, + [SMALL_STATE(2598)] = 80158, + [SMALL_STATE(2599)] = 80181, + [SMALL_STATE(2600)] = 80204, + [SMALL_STATE(2601)] = 80227, + [SMALL_STATE(2602)] = 80250, + [SMALL_STATE(2603)] = 80273, + [SMALL_STATE(2604)] = 80296, + [SMALL_STATE(2605)] = 80319, + [SMALL_STATE(2606)] = 80338, + [SMALL_STATE(2607)] = 80357, + [SMALL_STATE(2608)] = 80376, + [SMALL_STATE(2609)] = 80395, + [SMALL_STATE(2610)] = 80418, + [SMALL_STATE(2611)] = 80439, + [SMALL_STATE(2612)] = 80462, + [SMALL_STATE(2613)] = 80485, + [SMALL_STATE(2614)] = 80508, + [SMALL_STATE(2615)] = 80531, + [SMALL_STATE(2616)] = 80554, + [SMALL_STATE(2617)] = 80577, + [SMALL_STATE(2618)] = 80600, + [SMALL_STATE(2619)] = 80623, + [SMALL_STATE(2620)] = 80646, + [SMALL_STATE(2621)] = 80669, + [SMALL_STATE(2622)] = 80692, + [SMALL_STATE(2623)] = 80715, + [SMALL_STATE(2624)] = 80738, + [SMALL_STATE(2625)] = 80761, + [SMALL_STATE(2626)] = 80784, + [SMALL_STATE(2627)] = 80807, + [SMALL_STATE(2628)] = 80830, + [SMALL_STATE(2629)] = 80853, + [SMALL_STATE(2630)] = 80876, + [SMALL_STATE(2631)] = 80895, + [SMALL_STATE(2632)] = 80918, + [SMALL_STATE(2633)] = 80941, + [SMALL_STATE(2634)] = 80964, + [SMALL_STATE(2635)] = 80985, + [SMALL_STATE(2636)] = 81006, + [SMALL_STATE(2637)] = 81029, + [SMALL_STATE(2638)] = 81052, + [SMALL_STATE(2639)] = 81075, + [SMALL_STATE(2640)] = 81098, + [SMALL_STATE(2641)] = 81121, + [SMALL_STATE(2642)] = 81144, + [SMALL_STATE(2643)] = 81167, + [SMALL_STATE(2644)] = 81190, + [SMALL_STATE(2645)] = 81213, + [SMALL_STATE(2646)] = 81236, + [SMALL_STATE(2647)] = 81259, + [SMALL_STATE(2648)] = 81282, + [SMALL_STATE(2649)] = 81305, + [SMALL_STATE(2650)] = 81326, + [SMALL_STATE(2651)] = 81349, + [SMALL_STATE(2652)] = 81372, + [SMALL_STATE(2653)] = 81391, + [SMALL_STATE(2654)] = 81414, + [SMALL_STATE(2655)] = 81437, + [SMALL_STATE(2656)] = 81460, + [SMALL_STATE(2657)] = 81483, + [SMALL_STATE(2658)] = 81506, + [SMALL_STATE(2659)] = 81529, + [SMALL_STATE(2660)] = 81548, + [SMALL_STATE(2661)] = 81567, + [SMALL_STATE(2662)] = 81586, + [SMALL_STATE(2663)] = 81605, + [SMALL_STATE(2664)] = 81628, + [SMALL_STATE(2665)] = 81649, + [SMALL_STATE(2666)] = 81670, + [SMALL_STATE(2667)] = 81689, + [SMALL_STATE(2668)] = 81708, + [SMALL_STATE(2669)] = 81731, + [SMALL_STATE(2670)] = 81750, + [SMALL_STATE(2671)] = 81769, + [SMALL_STATE(2672)] = 81792, + [SMALL_STATE(2673)] = 81815, + [SMALL_STATE(2674)] = 81838, + [SMALL_STATE(2675)] = 81861, + [SMALL_STATE(2676)] = 81884, + [SMALL_STATE(2677)] = 81907, + [SMALL_STATE(2678)] = 81930, + [SMALL_STATE(2679)] = 81953, + [SMALL_STATE(2680)] = 81976, + [SMALL_STATE(2681)] = 81999, + [SMALL_STATE(2682)] = 82022, + [SMALL_STATE(2683)] = 82045, + [SMALL_STATE(2684)] = 82068, + [SMALL_STATE(2685)] = 82091, + [SMALL_STATE(2686)] = 82114, + [SMALL_STATE(2687)] = 82135, + [SMALL_STATE(2688)] = 82158, + [SMALL_STATE(2689)] = 82181, + [SMALL_STATE(2690)] = 82204, + [SMALL_STATE(2691)] = 82227, + [SMALL_STATE(2692)] = 82250, + [SMALL_STATE(2693)] = 82273, + [SMALL_STATE(2694)] = 82296, + [SMALL_STATE(2695)] = 82319, + [SMALL_STATE(2696)] = 82342, + [SMALL_STATE(2697)] = 82365, + [SMALL_STATE(2698)] = 82388, + [SMALL_STATE(2699)] = 82409, + [SMALL_STATE(2700)] = 82432, + [SMALL_STATE(2701)] = 82455, + [SMALL_STATE(2702)] = 82478, + [SMALL_STATE(2703)] = 82501, + [SMALL_STATE(2704)] = 82524, + [SMALL_STATE(2705)] = 82547, + [SMALL_STATE(2706)] = 82570, + [SMALL_STATE(2707)] = 82593, + [SMALL_STATE(2708)] = 82616, + [SMALL_STATE(2709)] = 82637, + [SMALL_STATE(2710)] = 82660, + [SMALL_STATE(2711)] = 82683, + [SMALL_STATE(2712)] = 82706, + [SMALL_STATE(2713)] = 82725, + [SMALL_STATE(2714)] = 82742, + [SMALL_STATE(2715)] = 82765, + [SMALL_STATE(2716)] = 82784, + [SMALL_STATE(2717)] = 82807, + [SMALL_STATE(2718)] = 82830, + [SMALL_STATE(2719)] = 82853, + [SMALL_STATE(2720)] = 82876, + [SMALL_STATE(2721)] = 82899, + [SMALL_STATE(2722)] = 82922, + [SMALL_STATE(2723)] = 82945, + [SMALL_STATE(2724)] = 82968, + [SMALL_STATE(2725)] = 82991, + [SMALL_STATE(2726)] = 83014, + [SMALL_STATE(2727)] = 83037, + [SMALL_STATE(2728)] = 83058, + [SMALL_STATE(2729)] = 83081, + [SMALL_STATE(2730)] = 83104, + [SMALL_STATE(2731)] = 83127, + [SMALL_STATE(2732)] = 83150, + [SMALL_STATE(2733)] = 83173, + [SMALL_STATE(2734)] = 83196, + [SMALL_STATE(2735)] = 83217, + [SMALL_STATE(2736)] = 83240, + [SMALL_STATE(2737)] = 83263, + [SMALL_STATE(2738)] = 83286, + [SMALL_STATE(2739)] = 83309, + [SMALL_STATE(2740)] = 83332, + [SMALL_STATE(2741)] = 83355, + [SMALL_STATE(2742)] = 83378, + [SMALL_STATE(2743)] = 83399, + [SMALL_STATE(2744)] = 83422, + [SMALL_STATE(2745)] = 83445, + [SMALL_STATE(2746)] = 83468, + [SMALL_STATE(2747)] = 83489, + [SMALL_STATE(2748)] = 83512, + [SMALL_STATE(2749)] = 83535, + [SMALL_STATE(2750)] = 83556, + [SMALL_STATE(2751)] = 83579, + [SMALL_STATE(2752)] = 83602, + [SMALL_STATE(2753)] = 83625, + [SMALL_STATE(2754)] = 83648, + [SMALL_STATE(2755)] = 83671, + [SMALL_STATE(2756)] = 83694, + [SMALL_STATE(2757)] = 83717, + [SMALL_STATE(2758)] = 83736, + [SMALL_STATE(2759)] = 83757, + [SMALL_STATE(2760)] = 83776, + [SMALL_STATE(2761)] = 83797, + [SMALL_STATE(2762)] = 83820, + [SMALL_STATE(2763)] = 83843, + [SMALL_STATE(2764)] = 83860, + [SMALL_STATE(2765)] = 83883, + [SMALL_STATE(2766)] = 83906, + [SMALL_STATE(2767)] = 83925, + [SMALL_STATE(2768)] = 83948, + [SMALL_STATE(2769)] = 83971, + [SMALL_STATE(2770)] = 83994, + [SMALL_STATE(2771)] = 84017, + [SMALL_STATE(2772)] = 84040, + [SMALL_STATE(2773)] = 84061, + [SMALL_STATE(2774)] = 84084, + [SMALL_STATE(2775)] = 84103, + [SMALL_STATE(2776)] = 84126, + [SMALL_STATE(2777)] = 84149, + [SMALL_STATE(2778)] = 84168, + [SMALL_STATE(2779)] = 84191, + [SMALL_STATE(2780)] = 84214, + [SMALL_STATE(2781)] = 84231, + [SMALL_STATE(2782)] = 84254, + [SMALL_STATE(2783)] = 84277, + [SMALL_STATE(2784)] = 84300, + [SMALL_STATE(2785)] = 84319, + [SMALL_STATE(2786)] = 84342, + [SMALL_STATE(2787)] = 84365, + [SMALL_STATE(2788)] = 84382, + [SMALL_STATE(2789)] = 84405, + [SMALL_STATE(2790)] = 84428, + [SMALL_STATE(2791)] = 84447, + [SMALL_STATE(2792)] = 84470, + [SMALL_STATE(2793)] = 84493, + [SMALL_STATE(2794)] = 84516, + [SMALL_STATE(2795)] = 84537, + [SMALL_STATE(2796)] = 84560, + [SMALL_STATE(2797)] = 84583, + [SMALL_STATE(2798)] = 84606, + [SMALL_STATE(2799)] = 84625, + [SMALL_STATE(2800)] = 84648, + [SMALL_STATE(2801)] = 84667, + [SMALL_STATE(2802)] = 84690, + [SMALL_STATE(2803)] = 84713, + [SMALL_STATE(2804)] = 84734, + [SMALL_STATE(2805)] = 84757, + [SMALL_STATE(2806)] = 84776, + [SMALL_STATE(2807)] = 84799, + [SMALL_STATE(2808)] = 84820, + [SMALL_STATE(2809)] = 84841, + [SMALL_STATE(2810)] = 84864, + [SMALL_STATE(2811)] = 84887, + [SMALL_STATE(2812)] = 84906, + [SMALL_STATE(2813)] = 84927, + [SMALL_STATE(2814)] = 84950, + [SMALL_STATE(2815)] = 84971, + [SMALL_STATE(2816)] = 84994, + [SMALL_STATE(2817)] = 85017, + [SMALL_STATE(2818)] = 85040, + [SMALL_STATE(2819)] = 85063, + [SMALL_STATE(2820)] = 85086, + [SMALL_STATE(2821)] = 85109, + [SMALL_STATE(2822)] = 85132, + [SMALL_STATE(2823)] = 85155, + [SMALL_STATE(2824)] = 85173, + [SMALL_STATE(2825)] = 85191, + [SMALL_STATE(2826)] = 85211, + [SMALL_STATE(2827)] = 85231, + [SMALL_STATE(2828)] = 85251, + [SMALL_STATE(2829)] = 85269, + [SMALL_STATE(2830)] = 85285, + [SMALL_STATE(2831)] = 85305, + [SMALL_STATE(2832)] = 85325, + [SMALL_STATE(2833)] = 85345, + [SMALL_STATE(2834)] = 85365, + [SMALL_STATE(2835)] = 85385, + [SMALL_STATE(2836)] = 85401, + [SMALL_STATE(2837)] = 85419, + [SMALL_STATE(2838)] = 85439, + [SMALL_STATE(2839)] = 85459, + [SMALL_STATE(2840)] = 85479, + [SMALL_STATE(2841)] = 85495, + [SMALL_STATE(2842)] = 85515, + [SMALL_STATE(2843)] = 85531, + [SMALL_STATE(2844)] = 85549, + [SMALL_STATE(2845)] = 85565, + [SMALL_STATE(2846)] = 85585, + [SMALL_STATE(2847)] = 85605, + [SMALL_STATE(2848)] = 85621, + [SMALL_STATE(2849)] = 85641, + [SMALL_STATE(2850)] = 85657, + [SMALL_STATE(2851)] = 85673, + [SMALL_STATE(2852)] = 85693, + [SMALL_STATE(2853)] = 85711, + [SMALL_STATE(2854)] = 85727, + [SMALL_STATE(2855)] = 85743, + [SMALL_STATE(2856)] = 85763, + [SMALL_STATE(2857)] = 85783, + [SMALL_STATE(2858)] = 85803, + [SMALL_STATE(2859)] = 85823, + [SMALL_STATE(2860)] = 85839, + [SMALL_STATE(2861)] = 85859, + [SMALL_STATE(2862)] = 85879, + [SMALL_STATE(2863)] = 85899, + [SMALL_STATE(2864)] = 85919, + [SMALL_STATE(2865)] = 85937, + [SMALL_STATE(2866)] = 85957, + [SMALL_STATE(2867)] = 85973, + [SMALL_STATE(2868)] = 85993, + [SMALL_STATE(2869)] = 86013, + [SMALL_STATE(2870)] = 86033, + [SMALL_STATE(2871)] = 86053, + [SMALL_STATE(2872)] = 86073, + [SMALL_STATE(2873)] = 86093, + [SMALL_STATE(2874)] = 86113, + [SMALL_STATE(2875)] = 86133, + [SMALL_STATE(2876)] = 86153, + [SMALL_STATE(2877)] = 86173, + [SMALL_STATE(2878)] = 86193, + [SMALL_STATE(2879)] = 86213, + [SMALL_STATE(2880)] = 86231, + [SMALL_STATE(2881)] = 86249, + [SMALL_STATE(2882)] = 86269, + [SMALL_STATE(2883)] = 86287, + [SMALL_STATE(2884)] = 86305, + [SMALL_STATE(2885)] = 86325, + [SMALL_STATE(2886)] = 86345, + [SMALL_STATE(2887)] = 86365, + [SMALL_STATE(2888)] = 86385, + [SMALL_STATE(2889)] = 86405, + [SMALL_STATE(2890)] = 86425, + [SMALL_STATE(2891)] = 86445, + [SMALL_STATE(2892)] = 86465, + [SMALL_STATE(2893)] = 86485, + [SMALL_STATE(2894)] = 86505, + [SMALL_STATE(2895)] = 86523, + [SMALL_STATE(2896)] = 86543, + [SMALL_STATE(2897)] = 86563, + [SMALL_STATE(2898)] = 86583, + [SMALL_STATE(2899)] = 86603, + [SMALL_STATE(2900)] = 86623, + [SMALL_STATE(2901)] = 86643, + [SMALL_STATE(2902)] = 86663, + [SMALL_STATE(2903)] = 86683, + [SMALL_STATE(2904)] = 86703, + [SMALL_STATE(2905)] = 86723, + [SMALL_STATE(2906)] = 86743, + [SMALL_STATE(2907)] = 86763, + [SMALL_STATE(2908)] = 86781, + [SMALL_STATE(2909)] = 86801, + [SMALL_STATE(2910)] = 86821, + [SMALL_STATE(2911)] = 86841, + [SMALL_STATE(2912)] = 86861, + [SMALL_STATE(2913)] = 86879, + [SMALL_STATE(2914)] = 86899, + [SMALL_STATE(2915)] = 86919, + [SMALL_STATE(2916)] = 86939, + [SMALL_STATE(2917)] = 86955, + [SMALL_STATE(2918)] = 86971, + [SMALL_STATE(2919)] = 86991, + [SMALL_STATE(2920)] = 87011, + [SMALL_STATE(2921)] = 87031, + [SMALL_STATE(2922)] = 87051, + [SMALL_STATE(2923)] = 87067, + [SMALL_STATE(2924)] = 87087, + [SMALL_STATE(2925)] = 87107, + [SMALL_STATE(2926)] = 87127, + [SMALL_STATE(2927)] = 87147, + [SMALL_STATE(2928)] = 87163, + [SMALL_STATE(2929)] = 87183, + [SMALL_STATE(2930)] = 87203, + [SMALL_STATE(2931)] = 87223, + [SMALL_STATE(2932)] = 87239, + [SMALL_STATE(2933)] = 87255, + [SMALL_STATE(2934)] = 87271, + [SMALL_STATE(2935)] = 87291, + [SMALL_STATE(2936)] = 87311, + [SMALL_STATE(2937)] = 87331, + [SMALL_STATE(2938)] = 87351, + [SMALL_STATE(2939)] = 87371, + [SMALL_STATE(2940)] = 87387, + [SMALL_STATE(2941)] = 87403, + [SMALL_STATE(2942)] = 87421, + [SMALL_STATE(2943)] = 87441, + [SMALL_STATE(2944)] = 87461, + [SMALL_STATE(2945)] = 87481, + [SMALL_STATE(2946)] = 87501, + [SMALL_STATE(2947)] = 87517, + [SMALL_STATE(2948)] = 87535, + [SMALL_STATE(2949)] = 87555, + [SMALL_STATE(2950)] = 87575, + [SMALL_STATE(2951)] = 87595, + [SMALL_STATE(2952)] = 87615, + [SMALL_STATE(2953)] = 87635, + [SMALL_STATE(2954)] = 87651, + [SMALL_STATE(2955)] = 87667, + [SMALL_STATE(2956)] = 87687, + [SMALL_STATE(2957)] = 87707, + [SMALL_STATE(2958)] = 87727, + [SMALL_STATE(2959)] = 87747, + [SMALL_STATE(2960)] = 87767, + [SMALL_STATE(2961)] = 87787, + [SMALL_STATE(2962)] = 87803, + [SMALL_STATE(2963)] = 87823, + [SMALL_STATE(2964)] = 87843, + [SMALL_STATE(2965)] = 87863, + [SMALL_STATE(2966)] = 87883, + [SMALL_STATE(2967)] = 87901, + [SMALL_STATE(2968)] = 87921, + [SMALL_STATE(2969)] = 87937, + [SMALL_STATE(2970)] = 87953, + [SMALL_STATE(2971)] = 87973, + [SMALL_STATE(2972)] = 87993, + [SMALL_STATE(2973)] = 88013, + [SMALL_STATE(2974)] = 88033, + [SMALL_STATE(2975)] = 88049, + [SMALL_STATE(2976)] = 88069, + [SMALL_STATE(2977)] = 88089, + [SMALL_STATE(2978)] = 88105, + [SMALL_STATE(2979)] = 88125, + [SMALL_STATE(2980)] = 88145, + [SMALL_STATE(2981)] = 88161, + [SMALL_STATE(2982)] = 88181, + [SMALL_STATE(2983)] = 88197, + [SMALL_STATE(2984)] = 88217, + [SMALL_STATE(2985)] = 88233, + [SMALL_STATE(2986)] = 88253, + [SMALL_STATE(2987)] = 88269, + [SMALL_STATE(2988)] = 88289, + [SMALL_STATE(2989)] = 88309, + [SMALL_STATE(2990)] = 88329, + [SMALL_STATE(2991)] = 88347, + [SMALL_STATE(2992)] = 88367, + [SMALL_STATE(2993)] = 88387, + [SMALL_STATE(2994)] = 88407, + [SMALL_STATE(2995)] = 88427, + [SMALL_STATE(2996)] = 88445, + [SMALL_STATE(2997)] = 88465, + [SMALL_STATE(2998)] = 88485, + [SMALL_STATE(2999)] = 88505, + [SMALL_STATE(3000)] = 88525, + [SMALL_STATE(3001)] = 88545, + [SMALL_STATE(3002)] = 88565, + [SMALL_STATE(3003)] = 88585, + [SMALL_STATE(3004)] = 88603, + [SMALL_STATE(3005)] = 88623, + [SMALL_STATE(3006)] = 88639, + [SMALL_STATE(3007)] = 88655, + [SMALL_STATE(3008)] = 88675, + [SMALL_STATE(3009)] = 88693, + [SMALL_STATE(3010)] = 88711, + [SMALL_STATE(3011)] = 88731, + [SMALL_STATE(3012)] = 88747, + [SMALL_STATE(3013)] = 88767, + [SMALL_STATE(3014)] = 88787, + [SMALL_STATE(3015)] = 88807, + [SMALL_STATE(3016)] = 88827, + [SMALL_STATE(3017)] = 88847, + [SMALL_STATE(3018)] = 88867, + [SMALL_STATE(3019)] = 88887, + [SMALL_STATE(3020)] = 88907, + [SMALL_STATE(3021)] = 88927, + [SMALL_STATE(3022)] = 88947, + [SMALL_STATE(3023)] = 88963, + [SMALL_STATE(3024)] = 88983, + [SMALL_STATE(3025)] = 89003, + [SMALL_STATE(3026)] = 89023, + [SMALL_STATE(3027)] = 89043, + [SMALL_STATE(3028)] = 89061, + [SMALL_STATE(3029)] = 89079, + [SMALL_STATE(3030)] = 89099, + [SMALL_STATE(3031)] = 89119, + [SMALL_STATE(3032)] = 89137, + [SMALL_STATE(3033)] = 89157, + [SMALL_STATE(3034)] = 89177, + [SMALL_STATE(3035)] = 89197, + [SMALL_STATE(3036)] = 89215, + [SMALL_STATE(3037)] = 89235, + [SMALL_STATE(3038)] = 89253, + [SMALL_STATE(3039)] = 89273, + [SMALL_STATE(3040)] = 89293, + [SMALL_STATE(3041)] = 89309, + [SMALL_STATE(3042)] = 89327, + [SMALL_STATE(3043)] = 89347, + [SMALL_STATE(3044)] = 89367, + [SMALL_STATE(3045)] = 89385, + [SMALL_STATE(3046)] = 89405, + [SMALL_STATE(3047)] = 89425, + [SMALL_STATE(3048)] = 89445, + [SMALL_STATE(3049)] = 89465, + [SMALL_STATE(3050)] = 89485, + [SMALL_STATE(3051)] = 89505, + [SMALL_STATE(3052)] = 89525, + [SMALL_STATE(3053)] = 89545, + [SMALL_STATE(3054)] = 89563, + [SMALL_STATE(3055)] = 89583, + [SMALL_STATE(3056)] = 89599, + [SMALL_STATE(3057)] = 89619, + [SMALL_STATE(3058)] = 89639, + [SMALL_STATE(3059)] = 89655, + [SMALL_STATE(3060)] = 89673, + [SMALL_STATE(3061)] = 89691, + [SMALL_STATE(3062)] = 89707, + [SMALL_STATE(3063)] = 89723, + [SMALL_STATE(3064)] = 89739, + [SMALL_STATE(3065)] = 89757, + [SMALL_STATE(3066)] = 89775, + [SMALL_STATE(3067)] = 89791, + [SMALL_STATE(3068)] = 89807, + [SMALL_STATE(3069)] = 89827, + [SMALL_STATE(3070)] = 89847, + [SMALL_STATE(3071)] = 89867, + [SMALL_STATE(3072)] = 89887, + [SMALL_STATE(3073)] = 89907, + [SMALL_STATE(3074)] = 89927, + [SMALL_STATE(3075)] = 89947, + [SMALL_STATE(3076)] = 89967, + [SMALL_STATE(3077)] = 89987, + [SMALL_STATE(3078)] = 90007, + [SMALL_STATE(3079)] = 90023, + [SMALL_STATE(3080)] = 90043, + [SMALL_STATE(3081)] = 90063, + [SMALL_STATE(3082)] = 90083, + [SMALL_STATE(3083)] = 90103, + [SMALL_STATE(3084)] = 90123, + [SMALL_STATE(3085)] = 90143, + [SMALL_STATE(3086)] = 90159, + [SMALL_STATE(3087)] = 90177, + [SMALL_STATE(3088)] = 90197, + [SMALL_STATE(3089)] = 90217, + [SMALL_STATE(3090)] = 90237, + [SMALL_STATE(3091)] = 90257, + [SMALL_STATE(3092)] = 90273, + [SMALL_STATE(3093)] = 90291, + [SMALL_STATE(3094)] = 90311, + [SMALL_STATE(3095)] = 90331, + [SMALL_STATE(3096)] = 90351, + [SMALL_STATE(3097)] = 90367, + [SMALL_STATE(3098)] = 90387, + [SMALL_STATE(3099)] = 90407, + [SMALL_STATE(3100)] = 90427, + [SMALL_STATE(3101)] = 90447, + [SMALL_STATE(3102)] = 90465, + [SMALL_STATE(3103)] = 90481, + [SMALL_STATE(3104)] = 90501, + [SMALL_STATE(3105)] = 90521, + [SMALL_STATE(3106)] = 90541, + [SMALL_STATE(3107)] = 90561, + [SMALL_STATE(3108)] = 90577, + [SMALL_STATE(3109)] = 90595, + [SMALL_STATE(3110)] = 90611, + [SMALL_STATE(3111)] = 90631, + [SMALL_STATE(3112)] = 90651, + [SMALL_STATE(3113)] = 90667, + [SMALL_STATE(3114)] = 90683, + [SMALL_STATE(3115)] = 90703, + [SMALL_STATE(3116)] = 90723, + [SMALL_STATE(3117)] = 90743, + [SMALL_STATE(3118)] = 90763, + [SMALL_STATE(3119)] = 90783, + [SMALL_STATE(3120)] = 90803, + [SMALL_STATE(3121)] = 90823, + [SMALL_STATE(3122)] = 90843, + [SMALL_STATE(3123)] = 90861, + [SMALL_STATE(3124)] = 90881, + [SMALL_STATE(3125)] = 90901, + [SMALL_STATE(3126)] = 90921, + [SMALL_STATE(3127)] = 90941, + [SMALL_STATE(3128)] = 90959, + [SMALL_STATE(3129)] = 90979, + [SMALL_STATE(3130)] = 90999, + [SMALL_STATE(3131)] = 91017, + [SMALL_STATE(3132)] = 91033, + [SMALL_STATE(3133)] = 91048, + [SMALL_STATE(3134)] = 91065, + [SMALL_STATE(3135)] = 91080, + [SMALL_STATE(3136)] = 91097, + [SMALL_STATE(3137)] = 91114, + [SMALL_STATE(3138)] = 91131, + [SMALL_STATE(3139)] = 91146, + [SMALL_STATE(3140)] = 91163, + [SMALL_STATE(3141)] = 91180, + [SMALL_STATE(3142)] = 91197, + [SMALL_STATE(3143)] = 91214, + [SMALL_STATE(3144)] = 91231, + [SMALL_STATE(3145)] = 91248, + [SMALL_STATE(3146)] = 91265, + [SMALL_STATE(3147)] = 91282, + [SMALL_STATE(3148)] = 91297, + [SMALL_STATE(3149)] = 91314, + [SMALL_STATE(3150)] = 91329, + [SMALL_STATE(3151)] = 91346, + [SMALL_STATE(3152)] = 91363, + [SMALL_STATE(3153)] = 91380, + [SMALL_STATE(3154)] = 91397, + [SMALL_STATE(3155)] = 91414, + [SMALL_STATE(3156)] = 91431, + [SMALL_STATE(3157)] = 91446, + [SMALL_STATE(3158)] = 91463, + [SMALL_STATE(3159)] = 91480, + [SMALL_STATE(3160)] = 91495, + [SMALL_STATE(3161)] = 91512, + [SMALL_STATE(3162)] = 91529, + [SMALL_STATE(3163)] = 91546, + [SMALL_STATE(3164)] = 91561, + [SMALL_STATE(3165)] = 91578, + [SMALL_STATE(3166)] = 91595, + [SMALL_STATE(3167)] = 91612, + [SMALL_STATE(3168)] = 91629, + [SMALL_STATE(3169)] = 91646, + [SMALL_STATE(3170)] = 91661, + [SMALL_STATE(3171)] = 91678, + [SMALL_STATE(3172)] = 91695, + [SMALL_STATE(3173)] = 91712, + [SMALL_STATE(3174)] = 91729, + [SMALL_STATE(3175)] = 91746, + [SMALL_STATE(3176)] = 91761, + [SMALL_STATE(3177)] = 91778, + [SMALL_STATE(3178)] = 91795, + [SMALL_STATE(3179)] = 91812, + [SMALL_STATE(3180)] = 91827, + [SMALL_STATE(3181)] = 91842, + [SMALL_STATE(3182)] = 91859, + [SMALL_STATE(3183)] = 91876, + [SMALL_STATE(3184)] = 91891, + [SMALL_STATE(3185)] = 91906, + [SMALL_STATE(3186)] = 91921, + [SMALL_STATE(3187)] = 91938, + [SMALL_STATE(3188)] = 91955, + [SMALL_STATE(3189)] = 91972, + [SMALL_STATE(3190)] = 91989, + [SMALL_STATE(3191)] = 92006, + [SMALL_STATE(3192)] = 92021, + [SMALL_STATE(3193)] = 92038, + [SMALL_STATE(3194)] = 92055, + [SMALL_STATE(3195)] = 92070, + [SMALL_STATE(3196)] = 92085, + [SMALL_STATE(3197)] = 92102, + [SMALL_STATE(3198)] = 92117, + [SMALL_STATE(3199)] = 92134, + [SMALL_STATE(3200)] = 92151, + [SMALL_STATE(3201)] = 92168, + [SMALL_STATE(3202)] = 92185, + [SMALL_STATE(3203)] = 92202, + [SMALL_STATE(3204)] = 92219, + [SMALL_STATE(3205)] = 92236, + [SMALL_STATE(3206)] = 92253, + [SMALL_STATE(3207)] = 92270, + [SMALL_STATE(3208)] = 92287, + [SMALL_STATE(3209)] = 92302, + [SMALL_STATE(3210)] = 92319, + [SMALL_STATE(3211)] = 92336, + [SMALL_STATE(3212)] = 92353, + [SMALL_STATE(3213)] = 92370, + [SMALL_STATE(3214)] = 92387, + [SMALL_STATE(3215)] = 92404, + [SMALL_STATE(3216)] = 92419, + [SMALL_STATE(3217)] = 92436, + [SMALL_STATE(3218)] = 92451, + [SMALL_STATE(3219)] = 92468, + [SMALL_STATE(3220)] = 92485, + [SMALL_STATE(3221)] = 92502, + [SMALL_STATE(3222)] = 92519, + [SMALL_STATE(3223)] = 92536, + [SMALL_STATE(3224)] = 92553, + [SMALL_STATE(3225)] = 92570, + [SMALL_STATE(3226)] = 92587, + [SMALL_STATE(3227)] = 92604, + [SMALL_STATE(3228)] = 92619, + [SMALL_STATE(3229)] = 92636, + [SMALL_STATE(3230)] = 92651, + [SMALL_STATE(3231)] = 92668, + [SMALL_STATE(3232)] = 92685, + [SMALL_STATE(3233)] = 92700, + [SMALL_STATE(3234)] = 92717, + [SMALL_STATE(3235)] = 92734, + [SMALL_STATE(3236)] = 92751, + [SMALL_STATE(3237)] = 92768, + [SMALL_STATE(3238)] = 92785, + [SMALL_STATE(3239)] = 92802, + [SMALL_STATE(3240)] = 92819, + [SMALL_STATE(3241)] = 92836, + [SMALL_STATE(3242)] = 92853, + [SMALL_STATE(3243)] = 92868, + [SMALL_STATE(3244)] = 92885, + [SMALL_STATE(3245)] = 92902, + [SMALL_STATE(3246)] = 92919, + [SMALL_STATE(3247)] = 92936, + [SMALL_STATE(3248)] = 92953, + [SMALL_STATE(3249)] = 92970, + [SMALL_STATE(3250)] = 92987, + [SMALL_STATE(3251)] = 93002, + [SMALL_STATE(3252)] = 93019, + [SMALL_STATE(3253)] = 93034, + [SMALL_STATE(3254)] = 93051, + [SMALL_STATE(3255)] = 93068, + [SMALL_STATE(3256)] = 93085, + [SMALL_STATE(3257)] = 93102, + [SMALL_STATE(3258)] = 93119, + [SMALL_STATE(3259)] = 93136, + [SMALL_STATE(3260)] = 93153, + [SMALL_STATE(3261)] = 93170, + [SMALL_STATE(3262)] = 93187, + [SMALL_STATE(3263)] = 93202, + [SMALL_STATE(3264)] = 93219, + [SMALL_STATE(3265)] = 93234, + [SMALL_STATE(3266)] = 93249, + [SMALL_STATE(3267)] = 93264, + [SMALL_STATE(3268)] = 93281, + [SMALL_STATE(3269)] = 93298, + [SMALL_STATE(3270)] = 93315, + [SMALL_STATE(3271)] = 93332, + [SMALL_STATE(3272)] = 93349, + [SMALL_STATE(3273)] = 93366, + [SMALL_STATE(3274)] = 93383, + [SMALL_STATE(3275)] = 93398, + [SMALL_STATE(3276)] = 93415, + [SMALL_STATE(3277)] = 93432, + [SMALL_STATE(3278)] = 93449, + [SMALL_STATE(3279)] = 93466, + [SMALL_STATE(3280)] = 93483, + [SMALL_STATE(3281)] = 93500, + [SMALL_STATE(3282)] = 93517, + [SMALL_STATE(3283)] = 93534, + [SMALL_STATE(3284)] = 93551, + [SMALL_STATE(3285)] = 93568, + [SMALL_STATE(3286)] = 93585, + [SMALL_STATE(3287)] = 93602, + [SMALL_STATE(3288)] = 93619, + [SMALL_STATE(3289)] = 93636, + [SMALL_STATE(3290)] = 93653, + [SMALL_STATE(3291)] = 93670, + [SMALL_STATE(3292)] = 93687, + [SMALL_STATE(3293)] = 93704, + [SMALL_STATE(3294)] = 93721, + [SMALL_STATE(3295)] = 93738, + [SMALL_STATE(3296)] = 93755, + [SMALL_STATE(3297)] = 93772, + [SMALL_STATE(3298)] = 93789, + [SMALL_STATE(3299)] = 93804, + [SMALL_STATE(3300)] = 93821, + [SMALL_STATE(3301)] = 93838, + [SMALL_STATE(3302)] = 93855, + [SMALL_STATE(3303)] = 93870, + [SMALL_STATE(3304)] = 93887, + [SMALL_STATE(3305)] = 93904, + [SMALL_STATE(3306)] = 93921, + [SMALL_STATE(3307)] = 93938, + [SMALL_STATE(3308)] = 93955, + [SMALL_STATE(3309)] = 93972, + [SMALL_STATE(3310)] = 93987, + [SMALL_STATE(3311)] = 94002, + [SMALL_STATE(3312)] = 94017, + [SMALL_STATE(3313)] = 94034, + [SMALL_STATE(3314)] = 94051, + [SMALL_STATE(3315)] = 94068, + [SMALL_STATE(3316)] = 94085, + [SMALL_STATE(3317)] = 94102, + [SMALL_STATE(3318)] = 94119, + [SMALL_STATE(3319)] = 94136, + [SMALL_STATE(3320)] = 94153, + [SMALL_STATE(3321)] = 94170, + [SMALL_STATE(3322)] = 94187, + [SMALL_STATE(3323)] = 94202, + [SMALL_STATE(3324)] = 94219, + [SMALL_STATE(3325)] = 94236, + [SMALL_STATE(3326)] = 94253, + [SMALL_STATE(3327)] = 94268, + [SMALL_STATE(3328)] = 94285, + [SMALL_STATE(3329)] = 94302, + [SMALL_STATE(3330)] = 94319, + [SMALL_STATE(3331)] = 94336, + [SMALL_STATE(3332)] = 94351, + [SMALL_STATE(3333)] = 94368, + [SMALL_STATE(3334)] = 94385, + [SMALL_STATE(3335)] = 94402, + [SMALL_STATE(3336)] = 94419, + [SMALL_STATE(3337)] = 94436, + [SMALL_STATE(3338)] = 94453, + [SMALL_STATE(3339)] = 94470, + [SMALL_STATE(3340)] = 94485, + [SMALL_STATE(3341)] = 94502, + [SMALL_STATE(3342)] = 94519, + [SMALL_STATE(3343)] = 94534, + [SMALL_STATE(3344)] = 94551, + [SMALL_STATE(3345)] = 94568, + [SMALL_STATE(3346)] = 94585, + [SMALL_STATE(3347)] = 94602, + [SMALL_STATE(3348)] = 94619, + [SMALL_STATE(3349)] = 94636, + [SMALL_STATE(3350)] = 94653, + [SMALL_STATE(3351)] = 94670, + [SMALL_STATE(3352)] = 94687, + [SMALL_STATE(3353)] = 94702, + [SMALL_STATE(3354)] = 94719, + [SMALL_STATE(3355)] = 94736, + [SMALL_STATE(3356)] = 94753, + [SMALL_STATE(3357)] = 94770, + [SMALL_STATE(3358)] = 94787, + [SMALL_STATE(3359)] = 94804, + [SMALL_STATE(3360)] = 94821, + [SMALL_STATE(3361)] = 94838, + [SMALL_STATE(3362)] = 94855, + [SMALL_STATE(3363)] = 94872, + [SMALL_STATE(3364)] = 94889, + [SMALL_STATE(3365)] = 94906, + [SMALL_STATE(3366)] = 94923, + [SMALL_STATE(3367)] = 94940, + [SMALL_STATE(3368)] = 94957, + [SMALL_STATE(3369)] = 94974, + [SMALL_STATE(3370)] = 94991, + [SMALL_STATE(3371)] = 95008, + [SMALL_STATE(3372)] = 95025, + [SMALL_STATE(3373)] = 95040, + [SMALL_STATE(3374)] = 95057, + [SMALL_STATE(3375)] = 95072, + [SMALL_STATE(3376)] = 95089, + [SMALL_STATE(3377)] = 95106, + [SMALL_STATE(3378)] = 95123, + [SMALL_STATE(3379)] = 95140, + [SMALL_STATE(3380)] = 95157, + [SMALL_STATE(3381)] = 95174, + [SMALL_STATE(3382)] = 95191, + [SMALL_STATE(3383)] = 95208, + [SMALL_STATE(3384)] = 95225, + [SMALL_STATE(3385)] = 95242, + [SMALL_STATE(3386)] = 95257, + [SMALL_STATE(3387)] = 95272, + [SMALL_STATE(3388)] = 95289, + [SMALL_STATE(3389)] = 95306, + [SMALL_STATE(3390)] = 95321, + [SMALL_STATE(3391)] = 95338, + [SMALL_STATE(3392)] = 95353, + [SMALL_STATE(3393)] = 95370, + [SMALL_STATE(3394)] = 95387, + [SMALL_STATE(3395)] = 95404, + [SMALL_STATE(3396)] = 95421, + [SMALL_STATE(3397)] = 95436, + [SMALL_STATE(3398)] = 95453, + [SMALL_STATE(3399)] = 95470, + [SMALL_STATE(3400)] = 95485, + [SMALL_STATE(3401)] = 95500, + [SMALL_STATE(3402)] = 95517, + [SMALL_STATE(3403)] = 95534, + [SMALL_STATE(3404)] = 95551, + [SMALL_STATE(3405)] = 95568, + [SMALL_STATE(3406)] = 95583, + [SMALL_STATE(3407)] = 95600, + [SMALL_STATE(3408)] = 95615, + [SMALL_STATE(3409)] = 95632, + [SMALL_STATE(3410)] = 95649, + [SMALL_STATE(3411)] = 95666, + [SMALL_STATE(3412)] = 95683, + [SMALL_STATE(3413)] = 95700, + [SMALL_STATE(3414)] = 95717, + [SMALL_STATE(3415)] = 95734, + [SMALL_STATE(3416)] = 95749, + [SMALL_STATE(3417)] = 95764, + [SMALL_STATE(3418)] = 95781, + [SMALL_STATE(3419)] = 95798, + [SMALL_STATE(3420)] = 95815, + [SMALL_STATE(3421)] = 95832, + [SMALL_STATE(3422)] = 95849, + [SMALL_STATE(3423)] = 95866, + [SMALL_STATE(3424)] = 95880, + [SMALL_STATE(3425)] = 95894, + [SMALL_STATE(3426)] = 95908, + [SMALL_STATE(3427)] = 95922, + [SMALL_STATE(3428)] = 95936, + [SMALL_STATE(3429)] = 95950, + [SMALL_STATE(3430)] = 95964, + [SMALL_STATE(3431)] = 95978, + [SMALL_STATE(3432)] = 95992, + [SMALL_STATE(3433)] = 96006, + [SMALL_STATE(3434)] = 96020, + [SMALL_STATE(3435)] = 96034, + [SMALL_STATE(3436)] = 96048, + [SMALL_STATE(3437)] = 96062, + [SMALL_STATE(3438)] = 96076, + [SMALL_STATE(3439)] = 96090, + [SMALL_STATE(3440)] = 96104, + [SMALL_STATE(3441)] = 96118, + [SMALL_STATE(3442)] = 96132, + [SMALL_STATE(3443)] = 96146, + [SMALL_STATE(3444)] = 96160, + [SMALL_STATE(3445)] = 96174, + [SMALL_STATE(3446)] = 96188, + [SMALL_STATE(3447)] = 96202, + [SMALL_STATE(3448)] = 96216, + [SMALL_STATE(3449)] = 96230, + [SMALL_STATE(3450)] = 96244, + [SMALL_STATE(3451)] = 96258, + [SMALL_STATE(3452)] = 96272, + [SMALL_STATE(3453)] = 96286, + [SMALL_STATE(3454)] = 96300, + [SMALL_STATE(3455)] = 96314, + [SMALL_STATE(3456)] = 96328, + [SMALL_STATE(3457)] = 96342, + [SMALL_STATE(3458)] = 96356, + [SMALL_STATE(3459)] = 96370, + [SMALL_STATE(3460)] = 96384, + [SMALL_STATE(3461)] = 96398, + [SMALL_STATE(3462)] = 96412, + [SMALL_STATE(3463)] = 96426, + [SMALL_STATE(3464)] = 96440, + [SMALL_STATE(3465)] = 96454, + [SMALL_STATE(3466)] = 96468, + [SMALL_STATE(3467)] = 96482, + [SMALL_STATE(3468)] = 96496, + [SMALL_STATE(3469)] = 96510, + [SMALL_STATE(3470)] = 96524, + [SMALL_STATE(3471)] = 96538, + [SMALL_STATE(3472)] = 96552, + [SMALL_STATE(3473)] = 96566, + [SMALL_STATE(3474)] = 96580, + [SMALL_STATE(3475)] = 96594, + [SMALL_STATE(3476)] = 96608, + [SMALL_STATE(3477)] = 96622, + [SMALL_STATE(3478)] = 96636, + [SMALL_STATE(3479)] = 96650, + [SMALL_STATE(3480)] = 96664, + [SMALL_STATE(3481)] = 96678, + [SMALL_STATE(3482)] = 96692, + [SMALL_STATE(3483)] = 96706, + [SMALL_STATE(3484)] = 96720, + [SMALL_STATE(3485)] = 96734, + [SMALL_STATE(3486)] = 96748, + [SMALL_STATE(3487)] = 96762, + [SMALL_STATE(3488)] = 96776, + [SMALL_STATE(3489)] = 96790, + [SMALL_STATE(3490)] = 96804, + [SMALL_STATE(3491)] = 96818, + [SMALL_STATE(3492)] = 96832, + [SMALL_STATE(3493)] = 96846, + [SMALL_STATE(3494)] = 96860, + [SMALL_STATE(3495)] = 96874, + [SMALL_STATE(3496)] = 96888, + [SMALL_STATE(3497)] = 96902, + [SMALL_STATE(3498)] = 96916, + [SMALL_STATE(3499)] = 96930, + [SMALL_STATE(3500)] = 96944, + [SMALL_STATE(3501)] = 96958, + [SMALL_STATE(3502)] = 96972, + [SMALL_STATE(3503)] = 96986, + [SMALL_STATE(3504)] = 97000, + [SMALL_STATE(3505)] = 97014, + [SMALL_STATE(3506)] = 97028, + [SMALL_STATE(3507)] = 97042, + [SMALL_STATE(3508)] = 97056, + [SMALL_STATE(3509)] = 97070, + [SMALL_STATE(3510)] = 97084, + [SMALL_STATE(3511)] = 97098, + [SMALL_STATE(3512)] = 97112, + [SMALL_STATE(3513)] = 97126, + [SMALL_STATE(3514)] = 97140, + [SMALL_STATE(3515)] = 97154, + [SMALL_STATE(3516)] = 97168, + [SMALL_STATE(3517)] = 97182, + [SMALL_STATE(3518)] = 97196, + [SMALL_STATE(3519)] = 97210, + [SMALL_STATE(3520)] = 97224, + [SMALL_STATE(3521)] = 97238, + [SMALL_STATE(3522)] = 97252, + [SMALL_STATE(3523)] = 97266, + [SMALL_STATE(3524)] = 97280, + [SMALL_STATE(3525)] = 97294, + [SMALL_STATE(3526)] = 97308, + [SMALL_STATE(3527)] = 97322, + [SMALL_STATE(3528)] = 97336, + [SMALL_STATE(3529)] = 97350, + [SMALL_STATE(3530)] = 97364, + [SMALL_STATE(3531)] = 97378, + [SMALL_STATE(3532)] = 97392, + [SMALL_STATE(3533)] = 97406, + [SMALL_STATE(3534)] = 97420, + [SMALL_STATE(3535)] = 97434, + [SMALL_STATE(3536)] = 97448, + [SMALL_STATE(3537)] = 97462, + [SMALL_STATE(3538)] = 97476, + [SMALL_STATE(3539)] = 97490, + [SMALL_STATE(3540)] = 97504, + [SMALL_STATE(3541)] = 97518, + [SMALL_STATE(3542)] = 97532, + [SMALL_STATE(3543)] = 97546, + [SMALL_STATE(3544)] = 97560, + [SMALL_STATE(3545)] = 97574, + [SMALL_STATE(3546)] = 97588, + [SMALL_STATE(3547)] = 97602, + [SMALL_STATE(3548)] = 97616, + [SMALL_STATE(3549)] = 97630, + [SMALL_STATE(3550)] = 97644, + [SMALL_STATE(3551)] = 97658, + [SMALL_STATE(3552)] = 97672, + [SMALL_STATE(3553)] = 97686, + [SMALL_STATE(3554)] = 97700, + [SMALL_STATE(3555)] = 97714, + [SMALL_STATE(3556)] = 97728, + [SMALL_STATE(3557)] = 97742, + [SMALL_STATE(3558)] = 97756, + [SMALL_STATE(3559)] = 97770, + [SMALL_STATE(3560)] = 97784, + [SMALL_STATE(3561)] = 97798, + [SMALL_STATE(3562)] = 97812, + [SMALL_STATE(3563)] = 97826, + [SMALL_STATE(3564)] = 97840, + [SMALL_STATE(3565)] = 97854, + [SMALL_STATE(3566)] = 97868, + [SMALL_STATE(3567)] = 97882, + [SMALL_STATE(3568)] = 97896, + [SMALL_STATE(3569)] = 97910, + [SMALL_STATE(3570)] = 97924, + [SMALL_STATE(3571)] = 97938, + [SMALL_STATE(3572)] = 97952, + [SMALL_STATE(3573)] = 97966, + [SMALL_STATE(3574)] = 97980, + [SMALL_STATE(3575)] = 97994, + [SMALL_STATE(3576)] = 98008, + [SMALL_STATE(3577)] = 98022, + [SMALL_STATE(3578)] = 98036, + [SMALL_STATE(3579)] = 98050, + [SMALL_STATE(3580)] = 98064, + [SMALL_STATE(3581)] = 98078, + [SMALL_STATE(3582)] = 98092, + [SMALL_STATE(3583)] = 98106, + [SMALL_STATE(3584)] = 98120, + [SMALL_STATE(3585)] = 98134, + [SMALL_STATE(3586)] = 98148, + [SMALL_STATE(3587)] = 98162, + [SMALL_STATE(3588)] = 98176, + [SMALL_STATE(3589)] = 98190, + [SMALL_STATE(3590)] = 98204, + [SMALL_STATE(3591)] = 98218, + [SMALL_STATE(3592)] = 98232, + [SMALL_STATE(3593)] = 98246, + [SMALL_STATE(3594)] = 98260, + [SMALL_STATE(3595)] = 98274, + [SMALL_STATE(3596)] = 98288, + [SMALL_STATE(3597)] = 98302, + [SMALL_STATE(3598)] = 98316, + [SMALL_STATE(3599)] = 98330, + [SMALL_STATE(3600)] = 98344, + [SMALL_STATE(3601)] = 98358, + [SMALL_STATE(3602)] = 98372, + [SMALL_STATE(3603)] = 98386, + [SMALL_STATE(3604)] = 98400, + [SMALL_STATE(3605)] = 98414, + [SMALL_STATE(3606)] = 98428, + [SMALL_STATE(3607)] = 98442, + [SMALL_STATE(3608)] = 98456, + [SMALL_STATE(3609)] = 98470, + [SMALL_STATE(3610)] = 98484, + [SMALL_STATE(3611)] = 98498, + [SMALL_STATE(3612)] = 98512, + [SMALL_STATE(3613)] = 98526, + [SMALL_STATE(3614)] = 98540, + [SMALL_STATE(3615)] = 98554, + [SMALL_STATE(3616)] = 98568, + [SMALL_STATE(3617)] = 98582, + [SMALL_STATE(3618)] = 98596, + [SMALL_STATE(3619)] = 98610, + [SMALL_STATE(3620)] = 98624, + [SMALL_STATE(3621)] = 98638, + [SMALL_STATE(3622)] = 98652, + [SMALL_STATE(3623)] = 98666, + [SMALL_STATE(3624)] = 98680, + [SMALL_STATE(3625)] = 98694, + [SMALL_STATE(3626)] = 98708, + [SMALL_STATE(3627)] = 98722, + [SMALL_STATE(3628)] = 98736, + [SMALL_STATE(3629)] = 98750, + [SMALL_STATE(3630)] = 98764, + [SMALL_STATE(3631)] = 98778, + [SMALL_STATE(3632)] = 98792, + [SMALL_STATE(3633)] = 98806, + [SMALL_STATE(3634)] = 98820, + [SMALL_STATE(3635)] = 98834, + [SMALL_STATE(3636)] = 98848, + [SMALL_STATE(3637)] = 98862, + [SMALL_STATE(3638)] = 98876, + [SMALL_STATE(3639)] = 98890, + [SMALL_STATE(3640)] = 98904, + [SMALL_STATE(3641)] = 98918, + [SMALL_STATE(3642)] = 98932, + [SMALL_STATE(3643)] = 98946, + [SMALL_STATE(3644)] = 98960, + [SMALL_STATE(3645)] = 98974, + [SMALL_STATE(3646)] = 98988, + [SMALL_STATE(3647)] = 99002, + [SMALL_STATE(3648)] = 99016, + [SMALL_STATE(3649)] = 99030, + [SMALL_STATE(3650)] = 99044, + [SMALL_STATE(3651)] = 99058, + [SMALL_STATE(3652)] = 99072, + [SMALL_STATE(3653)] = 99086, + [SMALL_STATE(3654)] = 99100, + [SMALL_STATE(3655)] = 99114, + [SMALL_STATE(3656)] = 99128, + [SMALL_STATE(3657)] = 99142, + [SMALL_STATE(3658)] = 99156, + [SMALL_STATE(3659)] = 99170, + [SMALL_STATE(3660)] = 99184, + [SMALL_STATE(3661)] = 99198, + [SMALL_STATE(3662)] = 99212, + [SMALL_STATE(3663)] = 99226, + [SMALL_STATE(3664)] = 99240, + [SMALL_STATE(3665)] = 99254, + [SMALL_STATE(3666)] = 99268, + [SMALL_STATE(3667)] = 99282, + [SMALL_STATE(3668)] = 99296, + [SMALL_STATE(3669)] = 99310, + [SMALL_STATE(3670)] = 99324, + [SMALL_STATE(3671)] = 99338, + [SMALL_STATE(3672)] = 99352, + [SMALL_STATE(3673)] = 99366, + [SMALL_STATE(3674)] = 99380, + [SMALL_STATE(3675)] = 99394, + [SMALL_STATE(3676)] = 99408, + [SMALL_STATE(3677)] = 99422, + [SMALL_STATE(3678)] = 99436, + [SMALL_STATE(3679)] = 99450, + [SMALL_STATE(3680)] = 99464, + [SMALL_STATE(3681)] = 99478, + [SMALL_STATE(3682)] = 99492, + [SMALL_STATE(3683)] = 99506, + [SMALL_STATE(3684)] = 99520, + [SMALL_STATE(3685)] = 99534, + [SMALL_STATE(3686)] = 99548, + [SMALL_STATE(3687)] = 99562, + [SMALL_STATE(3688)] = 99576, + [SMALL_STATE(3689)] = 99590, + [SMALL_STATE(3690)] = 99604, + [SMALL_STATE(3691)] = 99618, + [SMALL_STATE(3692)] = 99632, + [SMALL_STATE(3693)] = 99646, + [SMALL_STATE(3694)] = 99660, + [SMALL_STATE(3695)] = 99674, + [SMALL_STATE(3696)] = 99688, + [SMALL_STATE(3697)] = 99702, + [SMALL_STATE(3698)] = 99716, + [SMALL_STATE(3699)] = 99730, + [SMALL_STATE(3700)] = 99744, + [SMALL_STATE(3701)] = 99758, + [SMALL_STATE(3702)] = 99772, + [SMALL_STATE(3703)] = 99786, + [SMALL_STATE(3704)] = 99800, + [SMALL_STATE(3705)] = 99814, + [SMALL_STATE(3706)] = 99828, + [SMALL_STATE(3707)] = 99842, + [SMALL_STATE(3708)] = 99856, + [SMALL_STATE(3709)] = 99870, + [SMALL_STATE(3710)] = 99884, + [SMALL_STATE(3711)] = 99898, + [SMALL_STATE(3712)] = 99912, + [SMALL_STATE(3713)] = 99926, + [SMALL_STATE(3714)] = 99940, + [SMALL_STATE(3715)] = 99954, + [SMALL_STATE(3716)] = 99968, + [SMALL_STATE(3717)] = 99982, + [SMALL_STATE(3718)] = 99996, + [SMALL_STATE(3719)] = 100010, + [SMALL_STATE(3720)] = 100024, + [SMALL_STATE(3721)] = 100038, + [SMALL_STATE(3722)] = 100052, + [SMALL_STATE(3723)] = 100066, + [SMALL_STATE(3724)] = 100080, + [SMALL_STATE(3725)] = 100094, + [SMALL_STATE(3726)] = 100108, + [SMALL_STATE(3727)] = 100122, + [SMALL_STATE(3728)] = 100136, + [SMALL_STATE(3729)] = 100150, + [SMALL_STATE(3730)] = 100164, + [SMALL_STATE(3731)] = 100178, + [SMALL_STATE(3732)] = 100192, + [SMALL_STATE(3733)] = 100206, + [SMALL_STATE(3734)] = 100220, + [SMALL_STATE(3735)] = 100234, + [SMALL_STATE(3736)] = 100248, + [SMALL_STATE(3737)] = 100262, + [SMALL_STATE(3738)] = 100276, + [SMALL_STATE(3739)] = 100290, + [SMALL_STATE(3740)] = 100294, + [SMALL_STATE(3741)] = 100298, + [SMALL_STATE(3742)] = 100302, + [SMALL_STATE(3743)] = 100306, + [SMALL_STATE(3744)] = 100310, + [SMALL_STATE(3745)] = 100314, }; 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(2288), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), [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(1534), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2715), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(185), [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3295), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1056), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3407), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2674), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3508), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3164), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3261), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3166), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3618), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3183), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3565), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3582), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2109), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(75), [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(68), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2677), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3595), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2677), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3595), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1055), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(149), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1078), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(185), [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), [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(11), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(261), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1508), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(215), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(784), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(864), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3295), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3561), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2522), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2733), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1346), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1477), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(805), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1025), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(186), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2780), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(342), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3068), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2768), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3164), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2781), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1497), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2668), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1427), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1506), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3680), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1506), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3434), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 205), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 205), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 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__literal, 1, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(280), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1530), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(221), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(810), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(875), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3261), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3735), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2542), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2771), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1392), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1440), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(842), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), + [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(2588), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(352), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3073), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2687), + [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(40), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3340), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2589), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1484), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2808), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1459), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1534), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3552), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1534), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3498), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 206), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 206), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3295), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2522), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(805), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3164), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1078), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3261), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2542), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1440), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3073), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 250), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 250), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 124), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 124), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 152), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 152), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [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}}, SHIFT(2467), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 152), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 152), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 124), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 124), + [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_try_block, 2, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 253), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 253), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 180), [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 180), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 125), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 125), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(492), - [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), - [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3231), - [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), - [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3578), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3169), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2453), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2406), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 125), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 125), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 279), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 279), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 264), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 264), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 280), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 280), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 266), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 266), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 281), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 281), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 270), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 270), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 282), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 282), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 283), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 283), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 284), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 284), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 276), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 276), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 285), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 285), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 215), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 215), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 286), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 286), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 287), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 287), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 283), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 283), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 288), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 288), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 216), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 216), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 217), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 217), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 224), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 224), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 225), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 225), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3387), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3392), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3393), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3394), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2797), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 227), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 227), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 210), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 210), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 210), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 210), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 188), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 188), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 230), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 230), - [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_impl_item, 7, 0, 231), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 231), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 232), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 232), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 238), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 238), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 196), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 196), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 240), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 240), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 144), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 144), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 199), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 199), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 242), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 242), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 117), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 117), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 244), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 244), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 245), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 245), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 246), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 246), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 120), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 120), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 121), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 121), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 122), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 122), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 247), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 247), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 248), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 248), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 127), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 127), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 203), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 203), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 249), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 249), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 213), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 213), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 132), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 132), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 213), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 213), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 117), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 117), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 120), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 120), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 254), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 254), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 120), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 120), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 137), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 137), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 138), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 138), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 120), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 120), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 218), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 218), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 278), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 278), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 139), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 139), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 142), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 142), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 147), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 147), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 148), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 148), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 142), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 142), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 149), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 149), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 142), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 142), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 150), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 150), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 257), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 257), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 258), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 258), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 259), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 259), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 120), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 120), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 211), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 211), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 214), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 214), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 215), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 215), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 217), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 217), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 225), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 225), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 121), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 121), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 228), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 228), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 122), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 122), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 211), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 211), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 188), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 188), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 189), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 189), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 231), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 231), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 232), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 232), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 240), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 240), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 242), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 242), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 243), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 243), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 144), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 144), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 200), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 200), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 244), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 244), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 246), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 246), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 249), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 249), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 250), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 250), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 251), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 251), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 214), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 214), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 219), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 219), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 231), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 231), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 232), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 232), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 234), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 234), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 236), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 236), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 238), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 238), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 242), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 242), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 244), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 244), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 250), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 250), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 127), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 127), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 132), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 132), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 117), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 117), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 120), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 120), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 120), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 120), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 137), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 137), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 138), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 138), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 120), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 120), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 139), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 139), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 142), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 142), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2811), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3352), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3388), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2261), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3430), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2890), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2892), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2262), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1922), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2049), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 147), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 147), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 148), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 148), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 142), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 142), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 149), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 149), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 142), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 142), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 150), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 150), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 214), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 214), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 260), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 260), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 121), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 121), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 163), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 163), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 164), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 164), [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 230), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 230), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 262), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 262), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 232), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 232), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 263), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 263), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 264), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 264), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 121), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 121), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 163), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 163), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 164), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 164), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 127), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 127), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 234), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 234), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 236), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 236), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 130), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 130), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 177), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 177), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 178), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 178), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 270), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 270), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 271), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 271), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 182), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 182), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 187), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 187), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 137), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 137), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 188), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 188), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 138), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 138), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 139), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 139), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 189), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 189), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 191), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 191), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 193), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 193), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 196), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 196), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 197), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 197), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 240), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 240), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 147), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 147), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 198), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 198), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 182), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 182), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 191), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 191), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 272), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 272), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 144), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 144), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 260), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 260), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 191), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 191), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 199), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 199), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 191), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 191), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 200), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 200), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 201), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 201), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 202), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 202), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 203), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 203), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 204), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 204), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 273), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 273), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 164), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 164), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 242), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 242), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 274), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 274), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 247), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 247), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 276), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 276), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 127), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 127), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 130), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 130), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 177), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 177), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 178), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 178), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 182), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 182), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 187), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 187), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 137), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 137), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 188), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 188), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 189), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 189), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 138), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 138), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 139), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 139), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 190), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 190), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 191), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 191), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 194), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 194), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 198), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 198), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 147), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 147), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 199), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 199), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 182), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 182), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 192), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 192), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 144), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 144), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 192), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 192), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 200), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 200), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 192), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 192), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 201), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 201), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 202), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 202), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 204), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 204), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 205), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 205), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 117), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 117), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 180), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 180), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 180), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3619), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 125), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 125), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 125), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 209), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 209), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 160), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 160), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 134), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 134), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 113), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 113), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 208), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 208), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 208), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 208), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 153), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 153), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 183), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 183), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 157), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 157), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 159), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 159), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 208), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 208), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2711), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3315), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 133), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 133), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 125), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 145), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 253), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 125), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 162), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 211), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 212), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 180), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 194), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 195), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 116), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3661), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 180), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 180), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 180), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 125), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 125), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 125), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [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, 6, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 209), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 209), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 210), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 210), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 153), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 153), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 113), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 113), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 183), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 183), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 209), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 209), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 134), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 134), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 209), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 209), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 157), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 157), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 159), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 159), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 160), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 160), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [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_parenthesized_expression, 3, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3301), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 133), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 133), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2777), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 180), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 125), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 195), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 196), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 162), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 145), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 212), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 125), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 116), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 261), - [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 261), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 228), - [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1990), - [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(388), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 184), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 228), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 184), - [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 118), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3014), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 117), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 154), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 206), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 126), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 229), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 155), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3334), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2243), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 170), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1907), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(957), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), - [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), SHIFT_REPEAT(823), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 186), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2262), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 251), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 207), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2014), + [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(377), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 184), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 229), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 118), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 229), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 184), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 207), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 117), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 154), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 208), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2294), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2215), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 230), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 170), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 254), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), + [6480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), SHIFT_REPEAT(832), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 186), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [6535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 126), + [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 155), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [6738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 158), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 210), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 252), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 255), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 211), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 158), + [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), [6866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 181), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 181), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7370] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -198012,13 +200144,13 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_content] = 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_content] = true, }, [9] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, }; diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index ec96f27..9188d04 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1141,6 +1141,36 @@ type LazyResolve = impl (FnOnce() -> Capture) + Send + Sync + UnwindSafe; (type_identifier)) (type_identifier)))) +================================================================================ +Type alias where clauses +================================================================================ + +type Foo where T: Copy = Box; +type Assoc3 where = () where; + +-------------------------------------------------------------------------------- + +(source_file + (type_item + (type_identifier) + (type_parameters + (type_parameter + (type_identifier))) + (where_clause + (where_predicate + (type_identifier) + (trait_bounds + (type_identifier)))) + (generic_type + (type_identifier) + (type_arguments + (type_identifier)))) + (type_item + (type_identifier) + (where_clause) + (unit_type) + (where_clause))) + ================================================================================ Empty statements ================================================================================